问题及代码:
/*
*Copyright (c) 2016,烟台大学计算机学院
*All rights reserved.
*文件名称:main.cpp
*作 者:李磊涛
*完成时间:2016年5月7日
*版 本 号:v1.0
*
*问题描述:输出坐标。
*输入描述:2个整数,代表x,y。
*程序输出:x,y。
*/
#include<iostream>
using namespace std;
class point
{
private:
int x;
int y;
public:
point(int,int);
void show();
};
point::point(int a,int b)
{
x=a;
y=b;
}
void point::show()
{
cout<<x<<" "<<y<<endl;
}
int main()
{
int a,b;
cin>>a>>b;
point po(a,b);
po.show();
}
运行结果:
通过该程序,强化了我对继承基类和派生类的认识。
学习心得:
要多做题多熟悉一下继承机制定义类族。