c++中,length()函数如何使用?
提问:c++中,length()函数如何使用?
网友回答:
c++的length是用于字串长度的,如
string s="123456";
cout << s.length() << endl;
它结果为
6