- 论坛徽章:
- 1
|
本帖最后由 lost_templar 于 2013-04-13 21:04 编辑
回复 8# 幻の上帝
确实是 copy constructor 被触发了的原因,我加入这段代码:- derivative& operator = ( const derivative& other )
- {
- ff = [&](Types... vts) -> return_type { return other( vts... ); };
- }
- derivative( const derivative& other )
- {
- ff = [&](Types... vts) -> return_type { return other( vts... ); };
- }
复制代码 到类中之后,- auto const& dds = derivative<0, double(double)>(ds);
- std::cout << "d( d sin(x) / dx) / dx at (0.0) is " << derivative<0, double(double)>(dds)( 0.0 ) << "\n";
复制代码 输出正确的结果 0, 但是触发了 move constructor 的这段代码依旧输出 1:
- std::cout << "d( d sin(x) / dx) / dx at (0.0) is " << derivative<0, double(double)>(derivative<0, double(double)>(ds) )( 0.0 ) << "\n";
复制代码 尽管我已经把 move constructor 和 move assignment operator 写为:
- derivative( derivative&& other )
- {
- ff = [&](Types... vts) -> return_type { return other( vts... ); };
- }
- derivative& operator = ( derivative&& other )
- {
- ff = [&](Types... vts) -> return_type { return other( vts... ); };
- }
复制代码 而如果将 move constructor 和 move assignment operator 定义为 delete,则上边的代码不能通过编译 {:3_193:} |
|