最赞回答 / 进击的吃货
构造方法不写具体方法也要加上{},视频演示的时候,因为类是定义在头文件中的,所以只需要规定方法名和参数,具体在另外一个文件中实现该方法Student(){} ; Student(string _name){}; Student(const Student&stu){}; ~Student(){};
2019-06-26
最新回答 / weixin_慕桂英8445840
通过了#include <iostream>#include <string>#include<stdlib.h>using namespace std;class Student{public: // 定义数据成员封装函数setName() Student(); Student(string name); void setName(string _name); string getName(); Student(const Student &tea); ~St...
2019-05-29
最赞回答 / 慕UI1379366
可以类内定义函数啊,编译器会把它当做“内联函数”首先执行(前提是类内定义的那个函数较为简单。你这个程序可以运行啊,结果也没什么毛病,你是想问什么呢??
2019-05-17
最赞回答 / 慕工程8098467
Teacher t1;是实例化了一个对象t1,Teacher()函数是Teacher类的构造函数,而在实例化对象的同时类的构造函数会自动执行,
2019-05-14
最赞回答 / 慕移动7594754
这是一个二义性的问题Base2自己有一个b 然后又从Base1继承了一个b 当你d.b=2的时候 编译器不知道是Base1::b=2还是Base2::b=2
2019-05-08
最新回答 / weixin_慕工程1276151
#include<iostream>#include<math.h>using namespace std;class location{public : location (double _x,double _y) { x=_x; y=_y; } double getx() { return x; } double gety() { ...
2019-04-22