Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I don't understand why this isn't working. For some reason I'm getting the error:

error C2678: binary '>>' : no operator found which takes a left-hand operand of type 'std::istream' (or there is no acceptable conversion)

I'm doing this in Visual Studio2010 C++ Express if that helps. Not sure why its handing me this error I've done other programs using cin...

My Code:

#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;

int main(int argc, char* argv){
    string file;

    if (argc > 1)
    {
        file = argv[1];
    }
    else
    {
        cout << "Please Enter Your Filename: ";
        cin >> file;
    }
}
share|improve this question
6  
#include <string> – Benjamin Lindley Apr 16 '12 at 23:20

2 Answers

up vote 6 down vote accepted

include <string>

On top of that I suggest you use getline instead as >> will stop at the first word in your input.

Example:

std::cin >> file; // User inputs C:\Users\Andrew Finnell\Documents\MyFile.txt

The result is "C:\Users\Andrew", quite unexpected considering that the data is not consumed until the newline and, the next std::string read will automatically be consumed and filled with "Finnell\Documnts\MyFile.txt"

std::getline(std::cin, file); 

This will consume all text until the newline.

share|improve this answer
+1 from me on that call. – Ed S. Apr 16 '12 at 23:25
What do you mean by ">> doesn't work well with std::string's"? – Benjamin Lindley Apr 16 '12 at 23:27
@EdS. Thank you. – Andrew Finnell Apr 16 '12 at 23:28
@Benjamin : If the user types in a filename containing a space, things won't go as expected with operator>>. – ildjarn Apr 16 '12 at 23:29
1  
@ildjarn: Clearly. That's exactly what operator>> is specified to do. Doing what one is specified to do is not what I'd call "not working well". – Benjamin Lindley Apr 16 '12 at 23:31
show 2 more comments

You forgot to include <string>, which is where that function is defined. Remember that each type defines its own operator>> as a static function for manipulation via a stream. an input stream could not possibly be written to account for all types that may be created in the future, so it is extended this way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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