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

I want to do something really simple: I have function that has string parameter and I want to chain it to some constant string, then output result to console like this:

void test(string s){
    cout << "Parameter of this function was: " << s;
}

In other languages chaining like this works, but in C++ the compiler is unhappy: error C2679: binary '<<': no operator found which takes a right-hand operand of type 'std::string' (or there is no acceptable conversion)

share|improve this question

2 Answers

up vote 6 down vote accepted

You probably forgot to #include <string> or #include <iostream>.

share|improve this answer
Yes, i did. Thank you. – drasto Apr 22 '11 at 9:38

What version of Visual Studio are you using? Your code sample is correct C++ (as long as you have the appropriate "using namespace std;").

Putting similar code through g++ works fine.

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.