我想在C++中創建一個列表,但是當我構建我的代碼時它給了我錯誤。錯誤在C++中創建列表
這裏是我的代碼創建我的自定義列表:
std::list< osg::ref_ptr<osg::PositionAttitudeTransform> > bulletList = new std::list< osg::ref_ptr<osg::PositionAttitudeTransform> > ;
在控制檯上的錯誤時這樣說:
錯誤:轉換從‘std::list<osg::ref_ptr<osg::PositionAttitudeTransform> >*’
到非標量型‘std::list<osg::ref_ptr<osg::PositionAttitudeTransform> >’
要求
如何我要這樣做嗎?
C++不是Java。 – PaulMcKenzie
相同的想法:http://stackoverflow.com/questions/10564706/need-one-object-how-to-use-new – chris