Why typedef can not be used with static? For example, the code below is an error
typedef static int INT2;
What other rules should be follow to use the typedef? What other keywords can not be used with typedef?
Thanks so much!
|
Why typedef can not be used with static? For example, the code below is an error
What other rules should be follow to use the typedef? What other keywords can not be used with typedef? Thanks so much! |
|||||||
|
|
typedef doesn't declare an instance of a variable, it declares a type (type alias actually),
|
|||
|
|
|
The A typedef is a type definition, i.e. you're saying 'this name' now refers to 'this type', the name you give must be an identifier as defined by the language standard, the type has to be a type specifier, i.e. an already named type, either base type or typedef'd, a struct, union, class, or enum specifier, with possible type qualifiers, i.e. const, or volatile. The static keyword however does not change the type, it says something about the object, (in general, not in the OOP sense.) e.g. it is the variable that is placed in static storage, not the type. It looks like you're trying to use a typedef as a macro, i.e.
|
|||||||||||||
|
|
Storage duration is associated with objects. A typedef declaration creates an alias -- a new name for a type. It does not create objects. Hence you cannot use a storage specifier with a typedef. |
|||
|
|
|
As many other people have mentioned, A type is an interpretation of a memory location. It's a description of what kind of data lives in that location and comes associated with a set of operations that can be performed on that data. So type and storage class are only related in that they both say something about a piece of data. The As for a random analogy... A type is like talking about a specific make and model of car. A storage class is like saying that a car is stored in a private heated garage and only used on a private racetrack. A typedef is a nickname for a specific make and model. |
|||
|
|
|
I think the answers from wich and Bailey are correct and enough, but to help clarify to those that commented: When you declare a typedef the resulting type must be consistent everywhere it can be used. What if the typedef you created appears in the following code:
The same applies to the other keywords mentioned by Bailey. Think about it: the only keywords that can declare consistently a type for all its uses are the primitive types themselves, and the type modifiers (const, unsigned, etc.). |
||||
|
|