C++复习之拷贝构造函数调用时机

#include
using namespace std;

//拷贝构造函数调用时机

 class Person
 {
 	
 	public:
	 int m_age;
 		Person()
 		{
 			cout<<"Person的默认构造函数"<

C++复习之拷贝构造函数调用时机_第1张图片

你可能感兴趣的:(算法)