このページに関してのお問い合わせはこちら
***すれ立てるまでもない質問はここで 第49刷***
ツイート
587
:
デフォルトの名無しさん
:
04/01/28 03:53
>>585
string str = "0123456789";
str = string("012") + '\0' + "34";
cout << strlen(str.c_str()) << endl;
cout << str.size() << endl;
cout << str.length() << endl;
cout << str.capacity() << endl;