欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c/c++ 编译器提供的默认6个函数

程序员文章站 2023-01-13 13:40:30
c/c++ 编译器提供的默认6个函数 1,构造函数 2,拷贝构造函数 3,析构函数 4,=重载函数 5,&重载函数 6,const&重载函数 c++ include using namespace std; class Test{ public: Test(int d = 0):data(d){ c ......

c/c++ 编译器提供的默认6个函数

1,构造函数

2,拷贝构造函数

3,析构函数

4,=重载函数

5,&重载函数

6,const&重载函数

#include <iostream>
using namespace std;

class test{
public:
  test(int d = 0):data(d){
    cout << "c" << endl;
  }
  test(const test &t){
    cout << "copy" << endl;
    data = t.data;
  }
  test& operator= (const test &t){
    cout << "assign" << endl;
    if(this != &t){
      data = t.data;
    }
    return *this;
  }
  ~test(){
    cout << "f" << endl;
  }
  test* operator&(){
    cout << "operator&" << endl;
    return this;
  }
  const test* operator&() const{
    cout << "const operator&" << endl;
    return this;
  }
private:
  int data;
};

int main(){
  test t;//构造函数                                                
  test t1 = t;//拷贝构造函数                                       
  test t2;
  t2 = t;//operator=                                               

  test t3;
  test *pt3 = &t3;//operator&                                      

  const test t4;
  const test *pt4 = &t4;//const operator&                          
}