我有一些复杂的模板代码,其中的复制构造函数OPC
被调用,即使我只是创建一个引用OPC
(实际实例是OP_S
,它作为 的子类OPC
,不应该导致复制构造调用)。
我正在使用 gcc 4.6.1
代码如下。
#include <stdio.h>
class OPC
{
public:
OPC() { }
OPC( const OPC& f ) {
fprintf( stderr, "CC called!!!\n" );
}
};
template<class T>
class SL : public T
{ };
template<class T>
class S : public SL<T>
{ };
class OP_S : public S<OPC>
{ };
class TaskFoo
{
public:
TaskFoo( OPC& tf ) :
m_opc( tf ),
m_copc( tf )
{ }
OPC& getOPC() { return m_opc; }
private:
OPC& m_opc;
const OPC& m_copc;
};
int main(int argc, char** argv)
{
OP_S op_s;
TaskFoo tf( op_s );
auto opc = tf.getOPC(); // this line results in a call to OPC's CC
return 0;
}
答案如下 James McNellis 所述 - 需要auto&
而不是auto
.