vote up 5 vote down star

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.

flag

44% accept rate

8 Answers

vote up 38 vote down check

Because the C standard says so, and it gets the only vote.

As consequences:

  • The operand of sizeof can be a bare cast, sizeof (int), instead of an object expression.
  • The parentheses are unnecessary: int a; printf("%d\n", sizeof a); is perfectly fine. They're often seen, firstly because they're needed as part of a type cast expression, and secondly because sizeof has very high precedence, so sizeof a + b isn't the same as sizeof (a+b). But they aren't part of the invocation of sizeof, they're part of the operand.
  • You can't take the address of sizeof.
  • The expression which is the operand of sizeof is not evaluated at runtime (sizeof a++ does not modify a).
  • The expression which is the operand of sizeof can have any type except void, or function types. Indeed, that's kind of the point of sizeof.

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.

link|flag
Wow, just what I was thinking! – crashmstr Sep 8 at 11:58
Can't say it better. – Clement Herreman Sep 8 at 11:58
vote up 3 vote down

Because the C standard says so, and it gets the only vote.

And the standard is probably correct because sizeof takes a type and

In general, if either the domain or codomain (or both) of a function contains elements significantly more complex than real numbers, that function is referred to as an operator. Conversely, if neither the domain nor the codomain of a function contain elements more complicated than real numbers, that function is likely to be referred to simply as a function. Trigonometric functions such as cosine are examples of the latter case.

Additionally, when functions are used so often that they have evolved faster or easier notations than the generic F(x,y,z,...) form, the resulting special forms are also called operators. Examples include infix operators such as addition "+" and division "/", and postfix operators such as factorial "!". This usage is unrelated to the complexity of the entities involved.

(Wikipedia)

link|flag
This probably explains the motivation of the C standard (and other programming languages) in using the terms "operator" and "function" as they do. – Steve 'onebyone' Jessop Sep 8 at 12:17
vote up 2 vote down

It can be used as a compile-time constant, which is only possible if it's an operator rather than a function. For instance:

union foo {
    int i;
    char c[sizeof(int)];
};

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 sizeof can take both types and variables as an argument.

link|flag
+1 but note that it is not a compile-time constant when the argument is a VLA - variable length array. – Jonathan Leffler Sep 8 at 12:29
vote up 1 vote down

Because it's not a function. You can use it like that:

int a;
printf("%d\n", sizeof a);

Function does have entry point, code, etc. Function is to be run at runtime (or inlined), sizeof has to be determined at compile-time.

link|flag
vote up 0 vote down

Because:

  • when you pass a value to a function, the size of the object is not passed to the function, so a sizeof "function" would have no way of determining the size
  • in C, functions can only accept one type of argument; sizeof() needs to accept all sorts of differnet things (variables as well as types! You can't pass a type to a function in C)
  • calling a function involves making a copy of the arguments and other unnecessary overhead
link|flag
vote up 0 vote down

There is small diference from function - value of sizeof is resolved on compile time, but not at runtime!

link|flag
Except for VLA - variable length array - arguments. – Jonathan Leffler Sep 8 at 12:28
vote up 0 vote down

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++.

link|flag
vote up -1 vote down

Because if it was a function, you couldn't do this:

int sizeInt = sizeof int;

...which is perfectly legal

link|flag
1  
-1: That's not legal. If the argument to sizeof is a type, it must be parenthesized. Expressions don't need parentheses; try int intSize = sizeof 1. – outis Oct 25 at 3:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.