Re: Suggestion for N1984 auto proposal
Gene Bushuyev wrote:
"Peter Dimov" <pdimov@gmail.com> wrote in message
news:1153313462.985939.122910@h48g2000cwc.googlegroups.com...
"Gene Bushuyev" wrote:
You can find in the current auto proposal
(http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2006/n1984.pdf) some
problematic moments with "unconstrained" use of auto, like weird reference
rules, unintended aliasing and slicing, confusion with existing auto rules.
In reality, auto is most necessary in template metaprogramming where it's
also
the least problematic, and it's both unnecessary and problematic in
unconstrained expressions.
No, auto is most necessary in everyday code as in
for( auto i = c.begin(); i != c.end(); ++i ) { ... }
Now tell me, why? Why is it necessary in everyday code to save a few keystrokes
and lose clarity and thus to make coding more error-prone?
I don't believe that the version with the explicit type is less
error-prone. There is the possibility of a type mismatch.
It's true that the typeful version gives you more information when
reading. Whether this makes it clearer is probably open to discussion
and depends on the audience.
In the above example, a programmer can say nothing about the type of iterator
without looking at the container and retaining that in memory during the rest of
the lifetime of "i". Also, I wouldn't be surprised if compilers start producing
cryptic messages when the implicit type and programmers assumptions disagree.
Compilers tend to do that all the time without auto. :-) If you supply
the wrong type, for example.
Language that allows that sort of constructs makes a disservice to the
programmers.
for(std::vector<auto,auto>::const_iterator i = c.begin(); i != c.end(); ++i )
{ ... }
This is not difficult to type, but it's free from all those problems.
It doesn't work. vector<auto, auto>::const_iterator is a non-deduced
context.
int foo();
auto& x = foo(); // error? why not auto = const int?
The semantics of auto are derived from template argument deduction. In:
I mentioned those cases not because it's not possibile to create rules how they
should be treated, but because they are not obvious or trivial. Complicated
rules is a recipe for programming errors as well as typos masquerading as
legitimate code.
The rules are already in the language. They aren't being created.
template<class C>
void foo(const C& container)
{
auto i = container.begin();
// can we do much useful with "i" not knowing its type?
Yes, everything we need. Iterator types are typically opaque. We
usually know that C::const_iterator is an alias for the correct type,
but the real type is unknown in general.
In order to do anything useful with iterator, it's good to know what type of
iterator it is, if it's random access or not makes a big difference, whether it
const or not makes a big difference, etc.
You only use auto when you don't need to know all these things. What's
the problem?
---
[ comp.std.c++ is moderated. To submit articles, try just posting with ]
[ your news-reader. If that fails, use mailto:std-c++@ncar.ucar.edu ]
[ --- Please see the FAQ before posting. --- ]
[ FAQ: http://www.comeaucomputing.com/csc/faq.html ]