When we write int a;, it doesn't mean that we are creating an object of class int.
- What does it mean?
- What is the type of the datatype int in C and C++?
- Which header file shows what it is?
|
When we write
|
||||
| show 6 more comments |
Seems like you got a bit confused in your previous question :) In The idea of object in C++ is not the same as in most other languages, and most certainly is not the same as is commonly used in object-oriented programming circles. An object in C++ is a region of storage. If something has a type, it's either an object, a reference, or a function.
The language simply requires that the type
The builtin types are effectively magic. |
|||||||||||||||||||||
|
|
The There is no header defining it. The compiler has an intimate knowledge about All languages I know have predefined or built-in types (or names), which are specially known to the compiler. For example, in Ocaml, the Pervasives module is built-in. |
|||||||||||
|
|
(as far as C is concerned)
However, there are a lot of |
|||
|
|
|
When you type "int a;", you let the compiler know that any symbols "a" in a's scope have the datatype "int". |
|||
|
|
|
It can be
Note that
|
|||||||
|
int a;does indeed create an object in C++. It's an object of typeintwith indeterminate value if it has automatic storage duration; or with value0, if it has static storage duration. – R. Martinho Fernandes Dec 20 '11 at 11:22int a;creates an object of typeint. – James Kanze Dec 20 '11 at 11:34