把下面结构体转换成类
发布网友
发布时间:2022-04-21 09:50
我来回答
共2个回答
热心网友
时间:2023-11-09 06:47
class Ball {
int _x,_y,_v;
public:
void setX(int x)
{
_x = x;
}
int getX() const
{
return _x;
}
void setY(int y)
{
_y = y;
}
int getY() const
{
return _y;
}
void setV(int v)
{
_v = v;
}
int getV() const
{
return _v;
}
};
这就是符合面向对象原则,好好封装的类。怎么样,有没有感受到面向对象的优越性?尤其是考虑代码的价格是按行计算的
热心网友
时间:2023-11-09 06:48
class Ball
{
int x;
int y;
int v;
};