I am getting an error when I try to output the return value from one of my methods:
Error: No operator "<<" matches these operands. Operand types are: std::ostream << std::string
Main.cpp
#include <iostream>
using namespace std;
#include "Book.h"
int main()
{
book.setTitle("Advanced C++ Programming");
book.setAuthorName("Linda", "Smith");
book.setPublisher("Microsoft Press", "One Microsoft Way", "Redmond");
book.setPrice(49.99);
cout << book.getBookInfo(); // <-= this won't compile because of the error above.
int i;
cin >> i;
return 0;
};
Method which should return string:
string Book::getBookInfo()
{
stringstream ss;
ss << title << endl << convertDoubleToString(price) << endl;
return ss.str();
}
<< operator. – Rapptz Sep 2 '12 at 20:15getBookInforeturns a string, and that string gets inserted. – Pete Becker Sep 2 '12 at 20:16str::string? – Luchian Grigore Sep 2 '12 at 20:16titledeclared anywhere. – Mysticial Sep 2 '12 at 20:16str::string- shouldn't that bestd::string? – therefromhere Sep 2 '12 at 20:18