Why sizeof() is considered as operator not as function ?
So then I the question I will ask is what is property of an C operator should have to qualify as operator.
|
|
|
|
|
|
|
Because the C standard says so, and it gets the only vote. As consequences:
A function would differ on all those points. There are probably other differences between a function and a unary operator, but I think that's enough to show why sizeof could not be a function even if there was a reason to want it to be. |
||||
|
|
|
And the standard is probably correct because
|
||
|
|
|
It can be used as a compile-time constant, which is only possible if it's an operator rather than a function. For instance:
Syntactically if it weren't an operator then it would have to be a preprocessor macro since functions can't take types as arguments. That would be a difficult macro to implement since |
||
|
|
|
Because it's not a function. You can use it like that:
Function does have entry point, code, etc. Function is to be run at runtime (or inlined), sizeof has to be determined at compile-time. |
||
|
|
|
|
Because:
|
||
|
|
|
|
There is small diference from function - value of sizeof is resolved on compile time, but not at runtime! |
||
|
|
|
Because it is a compile-time operator that, in order to calculate the size of an object, requires type information that is only available at compile-time. This doesn't hold for C++. |
||
|
|
|
|
Because if it was a function, you couldn't do this:
...which is perfectly legal |
||||
|