C++创建一个Point类,有成员变量x,y,方法getX(),setX(),还有一个构造方法初始化x和y。创建类主类A来测试它。
时间: 2024-02-01 17:16:05 浏览: 80
建立C++基本程序
以下是你需要的代码:
```cpp
#include<iostream>
using namespace std;
class Point{
private:
int x;
int y;
public:
Point(int x=0, int y=0){ //构造函数,初始化x和y
this->x = x;
this->y = y;
}
int getX(){ //获取x
return x;
}
void setX(int x){ //设置x
this->x = x;
}
};
int main(){
Point p(3,4); //创建Point对象,初始化x=3,y=4
cout<<p.getX()<<endl; //输出x
p.setX(5); //设置x为5
cout<<p.getX()<<endl; //输出x
return 0;
}
```
运行结果:
```
3
5
```
阅读全文