-
一个类可以没有默认构造函数。查看全部
-
初始化列表存在的必要性
查看全部 -
构造函数与类同名!!!!、
逗号隔开 : ()赋值
注意写法:Student (string name):m_strName("Jim"){}
查看全部 -
重载是什么
自动匹配
查看全部 -
关于实例化的问题
查看全部 -
内容不能少于5个字!
查看全部 -
string用法
查看全部 -
#include "pch.h"
#include <iostream>
#include<stdlib.h>
#include<string>
using namespace std;int main(void)
{
string name;
cout << "please input your name:" << endl;
getline(cin, name);
if (name.empty())
{
cout << "input is null" << endl;
}
if (name == "imooc")
{
cout << "you are a adminstrator" << endl;
}
cout << "hello " + name << endl;
cout << "you naem length:" << name.size() << endl;
cout << "your name first letter is :" << name[0] << endl;
system("pause");
return 0;
}查看全部 -
初始化列表:
查看全部 -
封装数据:只希望外界读取,不希望外界改变。
查看全部 -
String的常用操作:
查看全部 -
String类型
初始化:
查看全部 -
学分初始化为0
查看全部 -
啦啦啦啦啦拉拉
查看全部 -
啦啦啦啦啦啦啦
查看全部
举报