标签:
C中的字符串其实是字符数组
引用头文件:#include<string.h>
常用函数:strlen()、strcpy()、strcmp()
C++中的字符串
引用头文件:#include<string>
只能用 cin>> 输入 cout<< 输出
Java中的字符串是其内部封装好的类
可以直接使用:String s1 = "helllo"
C/C++/Java 字符串操作
原文地址:http://www.cnblogs.com/theBoyisNone/p/5657245.html