传递像getAName(getA().get())
这样的函数参数是否安全? getA()
返回一个对象unique_ptr<A>
。
我在VS 2010上使用下面的完整代码进行测试,它可以工作。但我想确定它是否是c ++标准,对其他c ++编译器是否安全?
#include "stdafx.h"
#include <memory>
#include <iostream>
using namespace std;
class A
{
public:
A(){ cout<<"A()"<<endl;}
~A(){ cout<<"~A()"<<endl;}
string name() { return "A"; }
};
std::unique_ptr<A> getA()
{
return std::unique_ptr<A>(new A());;
}
void getAName(A* a)
{
if(a)
{
cout << a->name().c_str() << endl;
}
}
int _tmain(int argc, _TCHAR* argv[])
{
getAName(getA().get());
return 0;
}
控制台中的输出是:
A()
A
~()
是否有必要为所有编译器安装以下代码?
unique_ptr<A> a = getA();
getAName(a.get());