/*
*copvriqht(c)2016,烟台大学计算机学院
*All rights reserved.
*文件名称:test.cpp
*作者:陈传祯
*完成日期:2016年6月7日
*版本号:v1.0
*
*问题描述
*输入描述
*程序输出
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::Point(Point &p)
{
x=p.x;
y=p.y;
}void fun1(Point p)
{
cout<<p.getx()<<endl;
}
Point fun2()
{
Point a(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;
return 0;
}
*copvriqht(c)2016,烟台大学计算机学院
*All rights reserved.
*文件名称:test.cpp
*作者:陈传祯
*完成日期:2016年6月7日
*版本号:v1.0
*
*问题描述
*输入描述
*程序输出
*/
#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::Point(Point &p)
{
x=p.x;
y=p.y;
}void fun1(Point p)
{
cout<<p.getx()<<endl;
}
Point fun2()
{
Point a(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;
return 0;
}