-
初始化列表查看全部
-
析构函数在对象销毁时被自动调用查看全部
-
002查看全部
-
001查看全部
-
好难。。。查看全部
-
只写get函数而不写set函数来实现只读 非只读:void setScore(int_score) { m_iScore=_score; } int getScore() { return m_iScore; } 只读: int getScore() { return m_iScore; }查看全部
-
实例化一个Student对象stu: Student stu;查看全部
-
sting s1="aaaa"+"bbbb" ; false sting s1,s2; string s3="aaa"+s2+"bbbbbb"; true查看全部
-
类内定义的成员函数编译器在编译时会优先编译成(inline)内联函数 类外定义(同文件、分文件)查看全部
-
#include<iostream> #include<string> using namespace std; int main(void){ string name; cout << "please input your name:" << endl; getline(cin, name); if (name.empty()){ cout << "you input name is null..." << endl; system("pause"); return 0; } if (name == "wangwu") { cout << "you are a administrator." << endl; } cout << "hello !" << name << endl; cout << "you name length is " << name.size() << endl; cout << "you name first latter is " << name[0] << endl; system("pause"); return 0; }查看全部
-
内联函数与普通函数的区别查看全部
-
不允许使用两个字符串相加的格式查看全部
-
【string初始化方式】 string s1; string s2("ABC"); string s3(s2); string s4(n,'c'); 【常用操作】 s.empty() s.size() s[n] s1==s2//判断是否相等 【注意】 string s="hello"+s2+"world";//合法 string s="hello"+"world";//不合法(不允许带“”字符串通过+连接)查看全部
-
string定义方法查看全部
-
堆,栈对象成员访问查看全部
举报
0/150
提交
取消