Say I have an object of some of stl container classes obj. I can define other object of same type this way:

decltype(obj) obj2;

But I can't declare iterator for the container this way:

decltype(obj)::iterator it = obj.begin();

Why? Am I doing something wrong?

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

Your code is well-formed according to the final C++0x draft (FDIS). This was a late change that's not yet been implemented by the Visual Studio compiler.

In the meantime, a workaround is to use a typedef:

typedef decltype(obj) obj_type;
obj_type::iterator it = obj.begin();

EDIT: The relevant chapter and verse is 5.1.1/8:

qualified-id:
    [...]
    nested-name-specifier templateopt unqualified-id

nested-name-specifier:
    [...]
    decltype-specifier ::

decltype-specifier:
    decltype ( expression )

And for completeness's sake:

The original core issue

Proposal for wording

link|improve this answer
Thank you @JohannesD. If you edit your answer adding paragraph number of final draft which tells this I'll accept your answer. – Mihran Hovsepyan May 24 '11 at 5:05
@Mihran - Here you go :) – JohannesD May 24 '11 at 9:37
feedback

It's because of the way that the language is parsed.

decltype(obj)::iterator it = obj.begin();

You want it to become

(decltype(obj)::iterator) it;

But in actual fact, it becomes

decltype(obj) (::iterator) it;

I have to admit, I was also surprised to see that this was the case, as I'm certain that I've done this before. However, in this case, you could just use auto, or even decltype(obj.begin()), but in addition, you can do

typedef decltype(obj) objtype;
objtype::iterator it;
link|improve this answer
Thank you for auto. But typedefing is not good idea in my opinion. I'm doing this to avoid typedefing. – Mihran Hovsepyan May 23 '11 at 19:19
@Mihran Hovsepyan: Why? Your code is depending on a Standard typedef- it's hardly typedef-free. typedef is hardly avoidable in C++ as it stands. – DeadMG May 23 '11 at 19:21
my class defination is in header, but methods in cpp, so every time during implementation of cpp I should open header and look what is the type of a member. But as every programmer I'm trying to be lazy)) – Mihran Hovsepyan May 23 '11 at 19:33
@Mihran: I think that you are overdoing it... I reckon that you only have a couple of containers in the class, and that you can provide sensible names for them. Using those typedefs will make code more readable than using the intended decltype(obj)::iterator, and at any rate what DeadMG proposed can be a local typedef: void X::foo() { typedef decltype(member) container_t; container_t::begin it..., and that does not require you to go back and forth to the header... Then again I would not do that either... – David Rodríguez - dribeas May 23 '11 at 20:32
feedback

Yet another workaround until VC++'s parser is fixed to reflect the FDIS is to use the std::identity<> metafunction:

std::identity<decltype(obj)>::type::iterator it = obj.begin();
link|improve this answer
FWIW, std::identity has been removed, so that's effectively VC2010 dependent. (It's simple enough to write it, though.) – GManNickG May 24 '11 at 1:51
@GMan : Right, I only mentioned it because the OP's question was VC++ 2010 specific. :-] – ildjarn May 24 '11 at 2:09
feedback

Your Answer

 
or
required, but never shown

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