C++中string类的基本用法
Posted hu983
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++中string类的基本用法相关的知识,希望对你有一定的参考价值。
1 #include <iostream> 2 #include <set> 3 4 using namespace std; 5 6 int main() 7 { 8 string line; 9 getline(cin,line,‘-‘); //getline用法 10 cout<<line<<endl; 11 cout<<line.size()<<endl; //<iostream>中包含<string> 12 cout<<line[0]<<endl; //访问数组中的字符 13 14 return 0; 15 }
以上是关于C++中string类的基本用法的主要内容,如果未能解决你的问题,请参考以下文章