Possible Duplicate:
Is there a difference in C++ between copy initialization and direct initialization?
Is there any difference between,
int x(5);
int x = 5;
& What's the difference between,
int const x(5);
const int x(5);
Is there any difference between,
& What's the difference between,
|
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
A really good rule of thumb regarding
(see Vandevoorde/Josutiss "C++ Templates: The Complete Guide") E.g.:
Ever since I follow this rule-of-thumb, I never misinterpreted such declarations again. (: sisab retcarahc-rep a no ton ,sisab nekot-rep a no tfel-ot-thgir naem I hguohT :tidE |
|||||||||||||||
|
|
Of the 4 lines you show, only 1 is valid C.
I don't know the meaning of the invalid lines in other languages. In C, the meaning of the valid line is to create an object with name To define a "const" (better: a "read-only") object, the C syntax is
but
|
|||||||||||
|
|
For the first, there's no difference for built-in types. For class types, the For the second, there's no difference as far as the compiler is concerned, but the second (
In both definitions, the Because of this confusion, it's generally considered better practice to put the |
|||||||||||||
|
|
No both are exactly same until you are using an Argument. It's just a matter of coding style. [Note: But Following are not same:
] |
|||
|
|
|
About the
So, But, |
|||||||||
|
|
No difference. Alternate ways to initialize the variable to a value. But did you try this on your system? What did you get? |
|||
|
No difference.
No difference.
Here is a difference in |
|||||||||||
|