【发布时间】:2012-01-31 07:22:34
【问题描述】:
#include <iostream>
int main(void)
{
class date {
private:
int day;
int month;
int year;
public:
date( ) { std::cout << "default constructor called" << std::endl; }
date& operator=(const date& a) { std::cout << "copy constructor called" << std::endl; day=a.day; month=a.month; year=a.year; }
date(int d ,int m ,int y ) : day(d),month(m),year(y){ std::cout << "constructor called" << std::endl; }
void p_date(){ std::cout << "day=" << day << ",month=" << month << ",year=" << year << std::endl; }
date& add_day(int d) { day += d; return *this;}
date& add_month(int d) { month += d;return *this; }
date& add_year(int d) { year += d;return *this; }
};
class cdate {
date n;
public:
cdate(date b) : n(b) { std::cout << "cdate constructor called" << std::endl;}
void p_cdate() { n.p_date(); }
};
cdate ncdate(date(30,1,2012));
ncdate.p_cdate();
}
当我们在这段代码中实例化ncdate时:
- 调用
cdate ncdate(date(30,1,2012));时创建的临时日期对象 - 然后我希望调用
n = b并希望调用n的复制构造函数。
n 的复制构造函数没有被调用,我不知道为什么。我知道第二个假设有问题。 注意:这只是测试代码,所以不要过多讨论它的性能、可用性等。
【问题讨论】:
标签: c++ copy-constructor