Why is sizeof considered an operator and not a function? What property is necessary for something to qualify as an 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. |
|||||||||||
|
|
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 |
|||||
|
And the standard is probably correct because
|
|||
|
|
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++. |
|||
|
|
|
sizeof operator is compile time entity not runtime and don't need parenthesis like a function. When code is compiled then it replace the value with the size of that variable at compile time but in function after function gets execute then we will know the returning value. |
|||
|
|
|
|
||||
|
|
|
Because if it was a function, you couldn't do this:
...which is perfectly legal |
|||||
|

