摘要:
类和对象 三大特性:封装,继承,多态 封装 #include"methodState.h" class Student { public: string name; string id; void setName(string name) { this->name = name; } void 阅读全文
摘要:
Day13.2021.11.23 函数默认参数 一旦开始有默认值,后面必须都要有默认值 #include"methodState.h" int func(int a, int b = 20, int c=30) { return a + b + c; } /* 一旦开始有默认值,后面必须都要有默认值 阅读全文