vote up 1 vote down star

When trying to compile the following:

#include <string>
#include <iterator>
#include <iostream>
using namespace std;
int main() {
  string s(istream_iterator<char>(cin), istream_iterator<char>());
  return s.size();
}

g++ 4.4.1 gives me:

main.cc: In function ‘int main()’:
main.cc:6: error: request for member ‘size’ in ‘s’, which is of non-class type ‘std::string(std::istream_iterator<char, char, std::char_traits<char>, int>, std::istream_iterator<char, char, std::char_traits<char>, int> (*)())’

According to libstdc++ docs, string has a ctor that takes a begin/end iterator pair. Why do I get this error, then?

flag

3 Answers

vote up 5 vote down check

You're accidentally declaring a function instead of instantiating a string. Try declaring variables for your istream_iterator objects and then passing those to the std::string constructor.

And here's a good read that describes exactly your problem: http://www.gotw.ca/gotw/075.htm

link|flag
1  
Or: string s = string(istream_iterator<char>(cin), istream_iterator<char>()); – Nate Kohl Nov 5 at 22:09
I prefer Nate Kohl's approach too, it's not much costly (in term of typing) and the copy is probably optimized away anyway. – Matthieu M. Nov 6 at 7:21
@Mattieu M., if you look at Herb Sutter's declaration, I think it's actually less typing since you don't have to repeat the "istream_iterator<char>" boilerplate. These variables are probably also optimized away, and Herb prefers it "because it's much easier to get right, it's utterly understandable to even the weakest compilers, and it makes the code clearer to read to boot." – Fred Larson Nov 6 at 14:02
vote up 3 vote down

You've declared a function instead of variable. Write the following to fix:

string s(istream_iterator<char>(cin), (istream_iterator<char>()));
link|flag
vote up 3 vote down

Search for "most vexing parse", and you'll find more than you want to know.

The bottom line is that the compiler is interpreting your two parameters as specifying types instead of values. That, in turn, leads it to interpret your definition as being a declaration of a function instead.

link|flag

Your Answer

Get an OpenID
or

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