私は私の方法のいずれかからの出力に戻り値をしようとすると、私はエラーを取得しています:なぜstd :: stringを書き込んで、未知の演算子<<エラー?
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;
};
文字列を返す必要があります方法:
string Book::getBookInfo()
{
stringstream ss;
ss << title << endl << convertDoubleToString(price) << endl;
return ss.str();
}
あなたは '<<演算子」をオーバーロードする必要があります。 – Rapptz
@Rapptz - いいえ、ここではありません。メンバ関数 'getBookInfo'は文字列を返し、その文字列が挿入されます。 –
'str :: string'とは何ですか? –