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++构造函数的主要内容,如果未能解决你的问题,请参考以下文章

C++中复制构造函数被调用的三种情况

c++类大四个默认函数-构造函数 析构函数 拷贝构造函数 赋值构造函数

C++ 中类的构造函数理解

C++ 构造函数 & 析构函数

C++拷贝构造函数:浅拷贝与深拷贝

C++构造函数详解(复制构造函数)