- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有类似于this的代码:
#include <iostream>
#include <memory>
#include <optional>
class D {
D(int i) : i(i), private_member('p') {}
char private_member;
public:
D(const D&) = delete;
D &operator=(const D&) = delete;
D(D &&) = default;
D &operator=(D &&) = default;
static std::optional<D> try_create(int i) {
return i > 10 ? std::make_optional<D>(i) : std::nullopt;
}
int i;
};
void accept_unique_ptr_only(std::unique_ptr<D> &ptr) {}
int main() {
const auto d1 = D::try_create(10);
const auto d2 = D::try_create(11);
std::cout << (d1.has_value() ? std::to_string(d1->i) : "none1") << std::endl;
std::cout << (d2.has_value() ? std::to_string(d2->i) : "none2") << std::endl;
}
class D
来自外部库,因此遗憾的是没有机会对其进行更改。
std::unique_ptr
。
D
确实实现了move构造函数,所以我认为我可以将
D
移到
std::unique_ptr
中,但是我找不到允许我这样做的方法或构造函数。
D
实例移至
std::unique_ptr
的最佳方法是什么?
最佳答案
使用 std::make_unique
,这样的事情:
// non-const
auto d1 = D::try_create(10);
// accounting for empty option
auto d1ptr = d1 ? std::make_unique(std::move(*d1)) : std::unique_ptr<D>();
生成的
unique_ptr
将拥有
D
或不取决于
std::optional
。您必须将
d1
设为非常量,因为您需要对内部
D
进行非常量访问才能将其移出。
关于c++ - 将对象移到unique_ptr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64330902/
我有一个 jqgrid,在设置多重检查时,我在第一列上获得复选框,我希望该复选框列成为最后一列。 我没有找到任何选项,因此我正在编写一个自定义 jquery 方法来将 tr 的第一个 td 移动到最后
在编程类(class)中,我被要求创建一个 iCalendar 应用程序的副本。我正在使用 JAVA 对其进行编码,并使用 JFrame 和 JPanel 对其进行绘制。这是我的问题的 SSCCEE:
想把我的 snackbar 移到 bottomnavigationview 上面
我正在用 Objective-C 创建一个聊天应用程序。我的对话面板有两个项目,文本字段和将显示消息的表格。我正在为文本字段及其按钮使用 UIView,此 View 位于屏幕底部。每当我开始打字时,键
该方法用于选择User和TargetUser之间的 Action 数,例如就在两个用户之间。此方法的结果值取决于 GetTotalOfPossibleActions() 动态返回值(每个用户都有自己的
我有一个关于 owl api 用法的快速问题。 假设我有一个名为 Species 的类,它有一个哺乳动物子类,它有一个灵长类动物子类,它有一个人类子类。 物种 -> 哺乳动物 -> 灵长类动物 ->
我需要 eclipse 内容帮助将“java.lang.String”放置在以“string”开头的类型之上(见附图)。那可能吗? 请注意,对于此问题,“string”必须首先输入非大写的“s”。大写
我正在研究 pdf 页面上的收缩和收缩功能。我的捏合和平移(移动)工作正常,但是当用户连续移动缩放 View 时,缩放 View 超出了 super View 边界。是这样的: 我如何限制平移移动,以
一般 typescript 问题说我迭代一个我知道它的内容的数组并应用一个reduce来取回一个我知道类型的对象 例如: interface IMyInterface { a: number;
我有一个仪表板,您可以在其中使用小部件选择多个数据集。我使用 Python 中的 Altair 库从这些数据集中制作经典折线图,x 轴和 y 轴均从零开始。显示的数据是标准化数据,这意味着根据定义,所
首先,我没有这样做的经验。但是就像任何好的程序的开始一样,我有需要解决的问题,所以我愿意学习。 你们中的许多人可能已经熟悉 pdftk,它是处理各种 pdf 相关任务的便捷实用程序。据我所知,这些功能
我是一名优秀的程序员,十分优秀!