设计一个类表示数学中点的概念,有成员属性,x,y表示该点的二维坐标。 (运算符重载,默认参数)

C++... C++ 展开
 我来答
Polaris北斗
2016-09-13 · TA获得超过3204个赞
知道大有可为答主
回答量:2530
采纳率:79%
帮助的人:815万
展开全部
Class CPoint{
public:
    CPoint(double x=0.0,double y=0.0)
    { m_x=x; m_y=y; }
    ~CPoint()
    {}
    
    double getX() const
    { return m_x; }
    void setX(doubel x)
    { m_x=x; }
    
    double getY() const 
    { return m_y; }   
    void setY(doubel y)
    { m_y=y; }
    
    CPoint operator+(const CPoint &p)
    {    return CPoint(m_x+p.m_x,m_y+p.m_y); }
    
    void operator++()
    {  ++m_x;++m_y;   }
    
    void operator++(int)
    {  m_x++;m_y++;   }
    
    
private:
    double m_x;
    double m_y;
    
}

    

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式