c++构造函数
Posted lphwork
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++构造函数相关的知识,希望对你有一定的参考价值。
#include <iostream>
using namespace std;
class Point
int x,y;
public:
***Point(int a,int b)//:x(a),y(b)// x=a; y=b;***
void MovePoint( int a, int b) x+=a; y+=b;this->x+=a;cout<<"this="<<this<<endl;
void print()
cout<<"x="<<x<<" "<<this->x<<"y="<<y<<" "<<this->y<<endl;
;
void main()
Point point1( 10,10);
point1.MovePoint(2,2);
point1.print();
以上是关于c++构造函数的主要内容,如果未能解决你的问题,请参考以下文章