Update
It seems we can't use the *iter
to get the value of the element in the iterator.
So is there a easy way to get the value of the iter ?
I don't want to type the iter->xxx._xxx->_xxx
everytime.
I tried to use AHK to remap the string, is there a better way ?
I use *iterator
in the immediately window in Visual Studio 2013.
The iterator is defined as std::vector<std::string>::iterator iter = a.begin()
And I want to check the value of the string which the iterator
point to.
But I get the error
There is no operator * matches the operand
[
Why's that ? Or how can I get the value of the iterator in a easy way?