我无法理解我的代码发生了什么:为什么我收到“没有匹配函数调用 push_back”错误。我只能猜测这是一个新的错误...
int main(){
typedef std::tr1::shared_ptr<Base> Base_p;
typedef std::vector<Base_p> VectorPointers_t;
std::tr1::shared_ptr<Derived> myDer01(Derived);
VectorPointers_t myVector = VectorPointers_t();
myVector.push_back(myDer01);
}