gpt4 book ai didi

c++ - 如何初始化一个unique_ptr

转载 作者:IT老高 更新时间:2023-10-28 22:04:21 26 4
gpt4 key购买 nike

我正在尝试向我的类(class)添加延迟初始化函数。我对C++不是很精通。谁能告诉我我是如何实现的。

我的类(class)有一个私有(private)成员定义为:

std::unique_ptr<Animal> animal;

这是带有一个参数的原始构造函数:

MyClass::MyClass(string file) :
animal(new Animal(file))
{}

我刚刚添加了一个无参数构造函数和一个 Init() 函数。这是我刚刚添加的 Init 函数:

void MyClass::Init(string file)
{
this->animal = ???;
}

我需要在那里写什么才能使它等同于构造函数正在做的事情?

最佳答案

#include <memory>
#include <algorithm>
#include <iostream>
#include <cstdio>

class A
{
public :
int a;
A(int a)
{
this->a=a;

}
};
class B
{
public :
std::unique_ptr<A> animal;
void Init(int a)
{
this->animal=std::unique_ptr<A>(new A(a));
}
void show()
{
std::cout<<animal->a;
}
};

int main()
{
B *b=new B();
b->Init(10);
b->show();
return 0;
}

关于c++ - 如何初始化一个unique_ptr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32624077/

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