ViVi Home > 技術文書 > ポインタ入門 > 文字列クラス > operator<<()


 

 

C/C++ ポインタ入門 > 文字列クラス > operator<<()
Nobuhide Tsuda
Jan-2014

operator<<():

ostream &operator<<(ostream &os, const String &str)
{
	os << str.c_str();
	return os;
}

解説:

 


前: | 次: