[主观题]7 .string = null 和string = “”的区别
[试题]String 和StringBuffer的区别
[试题]5 string 和 stringbuffer的区别?
[主观题]string与stringBuffer的区别?
[问答题] STRING与STRINGBUFFER的区别是什么?
[主观题]String与StringBuffer的区别,以及"+"与append的区别?
[单选题]在某类的公共部分有声明string operator++();和string operator++(int);则说明A.string operator++();是前置自增运算符声明B.string operator++();是后置自增运算符声明C.string operator++(int); 是前置自增运算符声明D.两条语句无区别
[主观题]说出下面几个函数的区别:private void test(string str){…}private void test(ref string str){…}private void test(out string str){…}如果一个页面与数据
[试题]已知String类定义如下:class String{public:String(const char *str = NULL); // 通用构造函数String(const String &another); // 拷贝构造函数~ String(); // 析构函数String & perater =(const String &rhs); // 赋值函数private:char *m_data; // 用于保存字符串};尝试写出类的成员函数实现。
[主观题]String s = new String(xyz);创建了几个String Object