vs2008关于C++的shared_ptr
一直显示有错误,说我未声明,这个不是在memory这个头文件里自动声明的吗#include<iostream>#include<string>#include<memor...
一直显示有错误,说我未声明,这个不是在memory这个头文件里自动声明的吗
#include<iostream>
#include<string>
#include<memory>
using namespace std;
int main()
{
auto_ptr<string> file[5]=
{
auto_ptr<string> (new string("chai liqing")),
auto_ptr<string> (new string("zhang liang")),
auto_ptr<string> (new string("zou luting")),
auto_ptr<string> (new string("cai nanhe")),
auto_ptr<string> (new string("lu nongnong"))
};
shared_ptr<string> xuanze;
xuanze=file[1];
cout<<"*****全部打印*****"<<endl;
for(int i=0;i<5;i++)
cout<<"file["<<i<<"]="<<*file[i]<<endl;
cout<<"*****打印一个*****"<<endl;
cout<<"xuanze="<<*xuanze<<endl;
getchar();
return 0;
} 展开
#include<iostream>
#include<string>
#include<memory>
using namespace std;
int main()
{
auto_ptr<string> file[5]=
{
auto_ptr<string> (new string("chai liqing")),
auto_ptr<string> (new string("zhang liang")),
auto_ptr<string> (new string("zou luting")),
auto_ptr<string> (new string("cai nanhe")),
auto_ptr<string> (new string("lu nongnong"))
};
shared_ptr<string> xuanze;
xuanze=file[1];
cout<<"*****全部打印*****"<<endl;
for(int i=0;i<5;i++)
cout<<"file["<<i<<"]="<<*file[i]<<endl;
cout<<"*****打印一个*****"<<endl;
cout<<"xuanze="<<*xuanze<<endl;
getchar();
return 0;
} 展开
3个回答
展开全部
shared_ptr需要VS2008 SP1以上才自带有,头文件为#include <memory>,或者使用boost库(boost::shared_ptr),头文件为#include <boost/shared_ptr.hpp>
vs2008 error C2039: “shared_ptr”: 不是“std::tr1”的成员
vs2008创建的c++项目中用到了std::tr1::shared_ptr,
编译时报错:error C2039: “shared_ptr”: 不是“std::tr1”的成员。
原因:未安装vs2008 SP1
VS90sp1-KB945140-CHS.exe:
http://www.microsoft.com/downloads/zh-cn/details.aspx?FamilyID=FBEE1648-7106-44A7-9649-6D9F6D58056E
VS2008SP1CHSX1512981.iso:
http://www.microsoft.com/downloads/zh-cn/details.aspx?FamilyID=27673C47-B3B5-4C67-BD99-84E525B5CE61
若 不安装vs2008 SP1,也可使用Boost的实现boost::shared_ptr
vs2008 error C2039: “shared_ptr”: 不是“std::tr1”的成员
vs2008创建的c++项目中用到了std::tr1::shared_ptr,
编译时报错:error C2039: “shared_ptr”: 不是“std::tr1”的成员。
原因:未安装vs2008 SP1
VS90sp1-KB945140-CHS.exe:
http://www.microsoft.com/downloads/zh-cn/details.aspx?FamilyID=FBEE1648-7106-44A7-9649-6D9F6D58056E
VS2008SP1CHSX1512981.iso:
http://www.microsoft.com/downloads/zh-cn/details.aspx?FamilyID=27673C47-B3B5-4C67-BD99-84E525B5CE61
若 不安装vs2008 SP1,也可使用Boost的实现boost::shared_ptr
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询