标题:有一点不明白
只看楼主
花栖醉露
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2018-11-29
结帖率:100%
已结贴  问题点数:10 回复次数:2 
有一点不明白
#include <iostream>
using namespace std;
class Point{  
public:
    Point(int i,int j)    {
        x=i;
        y=j;
        cout<<"Point Constructor\n";
    }
    Point(Point &tempP){
        x=tempP.x+3;
        y=tempP.y+3;
        cout<<"Point Copy_Constructor\n";
    }
    int getX(){        return x;    }
    int getY(){        return y;    }
~Point(){cout<<"Point  Destructor\n";}
void print(){
    cout<<"pointX="<<x<<",pointY="<<y<<endl;
}
private:
    int x,y;   
};
int main(){   
    Point a1(2,3);
    a1.print();
    Point a2(a1);
    a2.print();
    Point *pa=new Point(8,9);
    pa->print();
    cout<<pa->getY()-pa->getX()<<endl;
    delete pa;
    return 0;
}


运行结果中的  1 是怎么来的!!求教!
运行出来是:
Point Constructor
pointX=2,pointY=3
Point Copy_Constructor
pointX=5,pointY=6
Point Constructor
pointX=8,pointY=9
1
Point  Destructor
Point  Destructor
Point  Destructor
请按任意键继续. . .

搜索更多相关主题的帖子: Point int cout return print 
2018-12-03 12:50
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:507
帖 子:8890
专家分:53117
注 册:2011-1-18
得分:10 
cout<<pa->getY()-pa->getX()<<endl;
9-8 就是 1

BTW:你这代码……
2018-12-03 13:35
花栖醉露
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2018-11-29
得分:0 
回复 2楼 rjsp
我的天!怎么会没注意到这行!
2018-12-03 19:33



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-491780-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.164849 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved