C/C++ ポインタ入門 > 文字列クラス > operator<<()
Nobuhide Tsuda
Jan-2014
operator<<():
ostream &operator<<(ostream &os, const String &str)
{
os << str.c_str();
return os;
}
解説:
- str.c_str() で文字列へのポインタを取り出し、 os << で出力します。
- 次に繋げるために return os; を忘れないように。
- ※ using namespace std; または using std::ostream; が必要です。
前:
| 次: