我应该在我的phone变量上使用register关键字吗?我有这个:
void *anything(Caller *caller)
{
register void *phone = caller->phone;
/* or this */
void *phone = caller->phone;
if (phone)
{
return phone;
}
return NULL;
}
Run Code Online (Sandbox Code Playgroud)
有区别吗?我该怎么办?
c ×1