gpt4 book ai didi

C++ unique_ptr 单独声明和实例化

转载 作者:行者123 更新时间:2023-11-30 01:12:25 34 4
gpt4 key购买 nike

也许这是一个很简单的问题。但作为一名 Java 程序员,我仍在为如何在 C++ 中正确实例化对象而苦苦挣扎。我在我的类中有一个成员变量,我不能在类构造函数的实例化列表中实例化它(因为它取决于一些配置值):

class SomeClass{    
private:
ObjectType mObject; //declaration and instantiation??

public:
SomeClass()/*:mObject(valueA,valueB)*/{
//read config here...
//now we got valueA and valueB
mObject = mObject(valueA,valueB);
}
};

上面显示的代码不起作用,因为 C++ 试图在 mObject(valueA, valueB) 之前调用 mObject()。我有两个问题:

  1. 在这种情况下我需要使用指针吗?
  2. 如何为此使用unique_ptr?我已经搜索过示例,但没有找到具有单独声明和实例化的示例。 (比如 here)

如果我尝试像这样使用 unique_ptr,我会得到一个错误:

 #include <memory>
class SomeClass{
private:
std::unique_ptr<ObjectType> mObject;

public:
SomeClass(){
//read config here...
//now we got valueA and valueB
mObject = new ObjectType(valueA,valueB);
}
};

错误是:

Error: no match for 'operator=' (operand types are 'std::unique_ptr' and 'ObjectType*') mObject= new ObjectType(valueA, valueB)

也许还有更好的解决方案,但我还没有看到。

最佳答案

您可以像这样设置 unique_pointer 的值:

mObject.reset(new ObjectType(valueA,valueB));

在此处查看文档:http://www.cplusplus.com/reference/memory/unique_ptr/reset/

关于C++ unique_ptr 单独声明和实例化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34329315/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com