标题:[已解决] Point类找错
只看楼主
ddflovefbk
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2007-7-9
 问题点数:0 回复次数:1 
[已解决] Point类找错

#include "stdafx.h"
#include <iostream>
using namespace std;
class Point
{
public:
Point(int xx=0,int yy=0) {X=xx;Y=yy;}
Point(Point &p);
int GetX() {return X;}
int GetY() {return Y;}
private:
int X,Y;
};
Point::Pint(Point &p)
{
X=p.X;
Y=p.Y;
cout<<拷贝构造函数被调用<<endl;
}
void fun1(Point p)
{
cout<<p.GetX()<<endl;
}
Point fun2()
{
PointA(1,2);
return A;
}
int main()
{
Point A(4,5);
Point B(A);
cout<<B.GetX()<<endl;
fun1(B);
B=fun2();
cout<<B.GetX()<<endl;
}


[此贴子已经被野比于2007-7-24 20:29:56编辑过]

搜索更多相关主题的帖子: Point return GetX cout endl 
2007-07-24 08:27
ddflovefbk
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2007-7-9
得分:0 

问题已经解决!!!!


一个想进步的菜菜菜鸟!!!
2007-07-24 08:38



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




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

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