修改以下代码错误:#include <iostream> #include"MyClass.h" using namespace std; class MyClass { public: MyClass() { x = 0; y = 0; } MyClass(int a = 0, int b = 0); private: int x, y; Print(); }; void MyClass::Print() { cout << "x=" << x << endl; cout << "y=" << y << endl; } MyClass::MyClass(int a = 0, int b = 0) { x = a; y = b; } int main() { MyClass obj1, obj2(5, 8); obj1.x = 1; obj1.y = 3; obj1.Print(); obj2.Print(); return 0; }
时间: 2023-12-03 15:02:42 浏览: 72
使用include <iostream>时一定要加using namespace std
好的,这段代码中有以下问题:
1. 头文件和类定义放置的顺序不正确,应该先包含头文件再定义类。
2. 类的成员函数 Print() 的声明应该在类的 public 部分,否则无法访问。
3. MyClass 的构造函数声明中,应该移除默认参数值,否则重复定义。
4. Print() 函数定义中,应该在函数名和函数体之间添加返回类型 void。
下面是修改后的代码:
```c++
#include<iostream>
#include"MyClass.h"
using namespace std;
class MyClass {
public:
MyClass(int a = 0, int b = 0);
void Print();
private:
int x, y;
};
MyClass::MyClass(int a, int b) {
x = a;
y = b;
}
void MyClass::Print() {
cout << "x=" << x << endl;
cout << "y=" << y << endl;
}
int main() {
MyClass obj1, obj2(5, 8);
obj1.x = 1;
obj1.y = 3;
obj1.Print();
obj2.Print();
return 0;
}
```
希望这样修改能够帮到您,如有其他问题,欢迎继续询问。
阅读全文