What is the goal of the "auto" keyword in C? With C++ 0x it got new meaning but does it mean that my code will break if I port C code over to a C++ 0x compiler?
|
feedback
|
|
Bjarne Stroustrup mentions in his C++0x FAQ about
So I assume, that compilers wil not be forced by the standard to implement the old meaning of | |||
|
feedback
|
|
It will break if your code contains the The purpose of the auto keyword in C++0X is to allow the compiler to work out the type of a variable, where this is possible:
the compiler can see that v.begin() must return a | |||||||||||||||
feedback
|
|
In C, | |||
|
feedback
|
|
This answer is wrong, see following question, I'm leaving the answer here as a reference. AFAIK C++0x's use of
The only place where it can change the meaning of the code is when auto was used together with the implicit | |||||||
feedback
|
|
It is rarely used; it meant a local variable. Modern compilers such as VS2010 C++ give it a new meaning. | |||||
feedback
|
|
I just came across some code that would not compile in VS2010. int foo( int auto ); To me, it was pretty stupid to have a parameter called 'auto' in the first place. | |||
|
feedback
|