I've been using the new auto keyword available in the C++0x standard for complicated templated types which is what I believe it was designed for. But I'm also using it for things like:

auto foo = std::make_shared<Foo>();

And more skeptically for:

auto foo = bla(); // where bla() return a shared_ptr<Foo>

I haven't seen much discussion on this topic. It seems that auto could be overused, since a type is often a form of documentation and sanity checks. Where do you draw the line in using auto and what are the recommended use cases for this new feature?

To clarify: I'm not asking for a philosophical opinion; I'm asking for the intended use of this keyword by the standard committee, possibly with comments on how that intended use is realized in practice.

Side note: This question was moved to SE.Programmers and then back to Stack Overflow. Discussion about this can be found in this meta question.

link|improve this question

This is a Q&A site though, not a discussion site. You asked a very very general question and I doubt that anybody will be able to give you anything other than a highly subjective one. (that's why -1) – TravisG Jun 22 '11 at 4:45
6  
@heishe, I added a clarification. If you read the question very generally, it does seem to be asking a subjective opinion, but really if you used the auto keyword, then you know how it's supposed to be used. That's what I'm asking, as someone who is new to this feature, is how am I supposed to use it? – Lex Fridman Jun 22 '11 at 4:50
@Lex Thank you, that is much better. Removed down and made it upvote :) – TravisG Jun 22 '11 at 4:52
4  
I've seen this discussion all over the place when C# introduced var (that is, once people got over the idea that it wasn't dynamic typing after all). If you want you can start with this question and go through the related questions. – R. Martinho Fernandes Jun 22 '11 at 5:11
@Lex : Interesting, then, that the answer you chose doesn't address your clarification at all, and is purely subjective (just like this question)... – ildjarn Jun 22 '11 at 20:34
show 2 more comments
feedback

10 Answers

up vote 27 down vote accepted

I think that one should use the auto keyword whenever it's hard to say how to write the type at first sight, but the type of the right hand side of an expression is obvious. For example, using:

my_multi_type::nth_index<2>::type::key_type::composite_key_type::key_extractor_tuple::tail_type::head_type::result_type

to get the composite key type in boost::multi_index, even though you know that it is int. You can't just write int because it could be changed in the future. I would write auto in this case.

So if the auto keyword improves readability in a particular case then use it. You can write auto when it is obvious to the reader what type auto represents.

Here are some examples:

auto foo = std::make_shared<Foo>(); // obvious
auto foo = bla(); // unclear. don't know which type `foo` has

const size_t max_size = 100;
for ( auto x = max_size; x > 0; --x ) // unclear. could lead to the errors
                                      // since max_size is unsigned

std::vector<some_class> v;
for ( auto it = v.begin(); it != v.end(); ++it ) // ok, since I know
// that `it` has an iterator type (don't really care which one in this context)
link|improve this answer
3  
That does not seem like a very good recommendation. How often is it that you don't know the type of the object? (Outside of templates, that is.) And if you don't know they type, look it up, don't be lazy and use auto. – Paul Manta Jun 22 '11 at 5:00
1  
@Paul, I added the sample of such type. I know how to write this type without auto (I did it), but writing this type doesn't add readability to the code. – Kirill V. Lyadvinsky Jun 22 '11 at 5:04
1  
@Lex Fridman, That's the same. If it is obvious for the reader what type is behind auto you can write auto. – Kirill V. Lyadvinsky Jun 22 '11 at 5:11
3  
@Paul: often times you only know or only need to know the most important part of the type, e.g. that it is an iterator, but you don't know and don't care whether it is an iterator of vectors or iterator of linked list; in those cases, you really don't want to spend time and screen space trying to figure out how to write down the types. – Lie Ryan Jun 22 '11 at 12:58
7  
Whether C++ diehards will like it or not, C++0x will attract people who would never have used C++. And those will use auto all over the place. – Amigable Clark Kant Jun 22 '11 at 13:02
show 4 more comments
feedback

Go for it. Use 'auto' anywhere it makes writing code easier.

Every new feature in any language is going to get overused by at least some types of programmers. It is only through moderate overuse by some experienced programmers (not noobs) that the rest of the experienced programmers learn the boundaries of proper use. Extreme overuse is usually bad, but could be good because such overuse may lead to improvements in the feature or a better feature to replace it.

But if I were working on code with more than a few lines like

auto foo = bla();

where the type is indicated zero times, I might want to change those lines to include types. The first example is great since the type is stated once, and 'auto' saves us from having to write messy templated types twice. Hooray for C++++. But explicitly showing the type zero times, if it's not easily visible in a nearby line, makes me nervous, at least in C++ and its immediate successors. For other languages designed to work at a higher level with more abstraction, polymorphism and genericity, it's fine.

link|improve this answer
feedback

Use auto everywhere you can. You won't have to worry about types except in the obvious cases, but they'll still be statically verified for you. You'll get the best of both worlds, while hardly ever having to repeat yourself. Where auto isn't feasible, use decltype to express types semantically as contracts based on expressions. Your code will look different, but it will be a positive change.

link|improve this answer
Sounds good to me. And also +2 if I could for decltype. – Amigable Clark Kant Jun 22 '11 at 13:03
feedback

Yes, it can be overused to the detriment of readability. I suggest using it in the contexts where exact types are long, or unutterable, or not important for readability, and variables are short-lived. For example, iterator type usually is long and isn't important, so auto would work:

   for(auto i = container.begin(); i != container.end(); ++i);

auto here doesn't hurt readability.

Another example is parser rule type, which can be long and convoluted. Compare:

   auto spaces = space & space & space;

with

r_and_t<r_and_t<r_char_t<char>&, r_char_t<char>&>, r_char_t<char>&> spaces = 
   space & space & space;

On the other hand, when type is known and is simple, it's much better if it stated explicitly:

int i = foo();

rather than

auto i = foo();
link|improve this answer
Of course, having a range-based for loop in the language makes your first example less exciting. 8v) – Fred Larson Jun 22 '11 at 5:00
@Fred: the type can still be cumbersome (I am thinking associative containers) – Matthieu M. Jun 22 '11 at 6:13
1  
@Fred: Any time your bounds aren't begin() and end(), or your step size is anything other than one, or you are modifying the container as you loop, the range-based for statement won't help you. – Dennis Zickefoose Jun 22 '11 at 15:32
2  
@geotavros: And r_and_t<r_and_t<r_char_t<char>&, r_char_t<char>&>, r_char_t<char>&> does? – Dennis Zickefoose Jun 22 '11 at 15:33
5  
@geotavros: Or you can see what type space is, and search for that. That's the more useful information anyhow... after all, the issue is not "what type is this new variable" but rather "what does space & space & space mean?" The actual type of the expression is just noise. – Dennis Zickefoose Jun 22 '11 at 17:12
show 5 more comments
feedback

Easy. Use it when you don't care what the type is. For example

for (auto i : some_container) {
   ...

All I care about here is that i is whatever's in the container.

It's a bit like typedefs.

typedef float Height;
typedef double Weight;
//....
Height h;
Weight w;

Here, I don't care whether h and w are floats or doubles, only that they are whatever type is suitable to express heights and weights.

Or consider

for (auto i = some_container .begin (); ...

Here all I care about is that it's a suitable iterator, supporting operator++(), it's kind of like duck typing in this respect.

Also the type of lambdas can't be spelled, so auto f = []... is good style. The alternative is casting to std::function but that comes with overhead.

I can't really conceive of an "abuse" of auto. The closest I can imagine is depriving yourself of an explicit conversion to some significant type -- but you wouldn't use auto for that, you'd construct an object of the desired type.

If you can remove some redundancy in your code without introducing side effects, then it must be good to do so.

Counterexamples (borrowed from someone else's answers):

auto i = SomeClass();
for (auto x = make_unsigned (y); ...)

Here we DO care what the type is, so we should write Someclass i; and for(unsigned x = y;...

link|improve this answer
That's a good rule. – TomA Dec 21 '11 at 21:56
feedback

Use auto where it makes sense for a type to be inferred. If you have something that you know is an integer, or you know it's a string, just use int / std::string, etc. I wouldn't worry about "overusing" a language feature unless it gets to the point of ridiculousness, or obfuscates code.

That's my opinion anyway.

link|improve this answer
2  
"where it makes sense..." is the tricky part. Programmers can get so caught up in the details of coding, they lose any sense of what makes sense to other programmers in particular future maintainers. – DarenW Jun 22 '11 at 5:36
That's true, although I think it's pretty easy to tell when it's ambiguous. When in doubt, use a comment! – LainIwakura Jun 22 '11 at 5:38
Wouldn't it make sense to use a type? – Misha Jun 22 '11 at 7:28
Some developers would say that the type should always be inferred! – Arafangion Aug 6 '11 at 10:14
feedback

I use auto wihout restriction and didn't face any problem. I even sometimes end up using it for simple types like int. This makes c++ a higher level language for me, and allows to declare variable in c++ like in python. After writing python code, I even sometimes write e.g.

auto i = MyClass();

instead of

MyClass i;

This is one case where I would say it is an abuse of the auto keyword.

Often I don't mind what is the exact type of the object, I'm more interested in its fonctionality, and as function names generally say something about the objects they return, auto does not hurt: in e.g. auto s = mycollection.size(), I can guess that s will be a kind of integer, and in the rare case where I care about the exact type, let's check the function prototype then (I mean, I prefer to have to check when I need the info, rather than a priori when code is written, just in case it would be usefull someday, as in int_type s = mycollection.size()).

Concerning this example from the accepted answer:

for ( auto x = max_size; x > 0; --x )

In my code I still use auto in this case, and if I want x to be unsigned, then I use an utility function, named say make_unsigned, which expresses clearly my concerns:

for ( auto x = make_unsigned(max_size); x > 0; --x )

disclaimer: I just describe my use, I'm not competent to give advices!

link|improve this answer
+1 For this nice sarcastic joke-answer! Oh wait, you didn't mean auto i = MyClass() and auto x = make_unsigned(may_size) serious, did you? – Christian Rau Dec 8 '11 at 14:05
feedback

auto keyword can only be used for local variable, not to arguments or class/struct members. So, it is safe and viable to use them anywhere you like. I do use them a lot. The type is deduced at compile time, the debugger shows the type while debugging, the sizeof reports it correctly, the decltype would give correct type - there is no harm. I don't count auto as overused, ever!

link|improve this answer
feedback

One of my bitter experience with auto is using it with lambda expressions:

auto i = []() { return 0; };
cout<<"i = "<<i<<endl; // output: 1 !!!

Actually, here i is resolved to function pointer of int(*)(). This is just a simple cout, but just imagine what kind of bad compilation / runtime errors it can cause when used with template.

You should avoid auto with such expressions and put a proper return type (or controlled decltype())

Correct usage for above example would be,

auto i = []() { return 0; }(); // and now i contains the result of calling the lambda  
link|improve this answer
2  
You did a terrible job of explaining what that has to do with auto. You created a function and then printed it... Okay? – Dennis Zickefoose Jun 22 '11 at 5:24
2  
@iammilind: and what does that have to do with auto? – R. Martinho Fernandes Jun 22 '11 at 5:33
4  
I find it highly unlikely that one would want to put () in the end. Lambdas are there to act as functions and that's where the function pointer conversion comes from. If you want to call it straight away, why use a lambda at all? auto i = 0; works rather well. – R. Martinho Fernandes Jun 22 '11 at 5:46
2  
Can you at least describe a scenario where auto x = []() { /* .... whatever goes in here ... */ }() is better than auto x = /* .... whatever goes in here ... */;, i.e, the same thing, without the lambda? I find that rather pointless, for the same reason auto x = 42 + y - 42 is pointless. – R. Martinho Fernandes Jun 22 '11 at 6:03
1  
@Martinho: Consider a variation on the construct here: stackoverflow.com/q/6077718/293791 where the loop is calculating some value which then gets returned. – Dennis Zickefoose Jun 22 '11 at 15:47
show 7 more comments
feedback

The French structuralists philosophers said that word and thought are inseparable. Same with code. I have used auto before. The process of using auto involved me figuring out the return type.

I NEVER use auto because it means you either aren't thinking or you already came up with the data type.

link|improve this answer
+1 For interesting point of view. I partially agree with, but I thik there are cases where auto is welcome (for-loops with iterators, for example). – Paul Manta Jun 22 '11 at 5:02
You stated one of the biggest concerns I had, that auto will prevent me from thinking and thus potentially writing code that's logically incorrect. – Lex Fridman Jun 22 '11 at 5:11
7  
It doesn't mean you aren't thinking. It could just mean you're sick of thinking about the type of that variable and want to get on to thinking about more useful, productive things instead. – Rob Kennedy Jun 22 '11 at 5:12
5  
What is so special about return types? Other types equally deserve to be spelled out, like e.g. sort<std::vector<int>::iterator>(v.first(),v.last()) instead of sort(v.first(),v.last()). – n.m. Jun 22 '11 at 5:32
8  
I guess that when people write code in Haskell, where almost all of the time the types are inferred, they aren't thinking. – R. Martinho Fernandes Jun 22 '11 at 5:34
show 1 more comment
feedback

protected by Kirill V. Lyadvinsky Jun 24 '11 at 4:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.