一个模板类和一个普通类:
template <typename Type>
class Holder
{
public:
Holder(const Type& value) : held_(value)
{
cout << "Holder(const Type& value)" << endl;
}
Type& Ref() { return held_; }
private:
Type held_;
};
class Animal
{
public:
Animal(const Animal& rhs) { cout << "Animal(const Animal& rhs)" << endl; }
Animal() { cout << "Animal()" << endl; }
~Animal() { cout << "~Animal" << endl; }
void Print() const { cout << "Animal::Print()" << endl; }
};
然后我想Holder<Animal>
用这个语句实例化 a Holder<Animal> a(Animal());
,但是它失败了。我的意思Animal()
是不被视为临时对象。而且这个语句不调用Holder
's 的构造函数。
如果有人可以解释?我不清楚。我猜a
这里会变成一种类型。然后,我使用Holder<Animal> a = Holder<Animal>(Animal());
,效果很好。所以,这里有一些情况:
Holder<Animal> a(Animal()); a.Ref().Print(); // error
Holder<Animal> a = Holder<Animal>(Animal()); a.Ref().Print(); // ok
Holder<int> b(4); b.Ref() = 10; cout << b.Ref() << endl; //ok
能解释一下吗?我只是对第一个陈述有点困惑。以及此语句导致的错误信息:
GCC4.7.2
:error: request for member 'Ref' in 'a', which is of non-class type 'Holder<Animal>(Animal (*)())'
VS10
: error C2228: left of '.Ref' must have class/struct/union
,error C2228: left of '.Print' must have class/struct/union