标准字符串的方法: /******************************************** the tokenize function for std::string *********************************************/ #include <string> #include <vector> #include <iostream> using namespace std; typedef basic_strin…
String字符串 char类型只能表示一个字符,而String可以表示字符串,也就是一个字符序列.但String不是基本类型,而是一个定义好的类,是一个引用类型.在Java中,可以将字符串直接量赋给String类型变量,也可以采用new String(parameter)的形式来创建字符串. String str = "This is String”; //用字符串直接量赋值String str = new String("Create a String through the Co…