int x = 12;
12 is said to be integer literal, and therefore can't be used in the LValue.
- How does the compiler allocate memory to a literals?
- What is the scope of a literals?
- Why can't we get its address with an &12 in its scope?
|
show 9 more comments
feedback
|
|
OK Bad example in the question.
Undefined up-to the compiler.
The temporary object lives until the end of the expression (usually the
In the question 12 is not a temporay object. | |||||||||||||||||
feedback
|
|
In your example
would translate to something like
in almost all architectures. Here 12 is encoded as part of the instruction. Just to be clear, | |||||||||||||||
feedback
|
|
In this case, a
The life of the temporary object is until the semi-colon
| |||||||||||||
feedback
|
This is really difficult to answer. The compiler will optomize the code as much as possible (the amount or level of optomization performed can often be set in your compiler tool). For an example like the one given, if x can be substituted in the assembly instructions by 12, then x is "optomized out" and 12 is used as a direct replacement for x. The "volatile" keyword can be used to trick the compiler into checking x every time it is used in the code. This will generate larger programs but might be useful to help you assign a memory location (storage) for your variable. | |||
|
feedback
|
|
Object is "something in memory". It means that this something occupies part of the process address space (either in stack or in 'free' memory). Also it means that you can get an address of it if you want to. Temporary objects are just objects. Compiler generates the code to create them if it need such objects to calculate an expression:
The expression which calls f() will lead to generation of code which:
The key part of this is the destruction of temporary object at the end of expression evaluation. Temporary object only exists in the expression itself (that is their makeshift scope). You may try something like: The other question that arises here is the nature of objects in an expression like Anyway, no matter what happens in the following code,
In case of an x plased in register you will have:
In both cases, 12 will be a part of the instruction (of compiled code chunk). Thus it will not be a separate object. | |||||
feedback
|
|
Be careful, as other answers mostly cleared your misconceptions, but not this one:
This question makes no sense, as the scope is a property of names (variables names, functions names, types names, templates names, namespaces names...). A literal is a notation for a number, not a name. | |||
|
feedback
|
12isn't an object at all, nor isx. You may want to choose a better example like a real object. – paxdiablo Dec 20 '11 at 6:59xdoes name an object under the C++ object model. It's created by a definition, it has a storage duration, and it has a type. See § 1.8 The C++ object model in the C++11 standard. In the question it's clear that the term 'object' is being used in this sense, and not in the sense of an object in object oriented programing. – bames53 Dec 20 '11 at 7:17intis a type, not a class. In C, there's no such thing as a class; in C++, a class type is an aggregate type declared usingstruct,classorunion. – Mike Seymour Dec 20 '11 at 11:45