- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码:
{
t = std::make_unique<std::thread>(std::bind(&Widget::generateNum, this));
}
在 ~thread()
处崩溃,错误消息是“r6010 abort() has been called”。如果我在破坏 t
之前没有调用 t.release()
,将导致崩溃。
最佳答案
在销毁线程之前必须分离或加入线程。
auto t = std::make_unique<std::thread>(std::bind(&Widget::generateNum, this));
// Either do this:
t->detach();
// or do this:
t->join();
// before *t gets destroyed.
分离还是加入取决于您,但您必须选择其中之一。如果一个非空的 std::thread
被销毁,它将调用 std::terminate
,结束你的程序。
参见 std::thread::~thread :
If
*this
has an associated thread (joinable() == true
),std::terminate()
is called.
默认的 std::terminate
处理程序调用 std::abort
,因此调用了 abort 的消息。
调用 t.release()
是错误的。这会泄漏 std::thread
对象。
关于c++ - 为什么 std::make_unique<std::thread>(somefun()) 在我没有调用 release() 时会产生崩溃,而在调用时会产生崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44297234/
struct Foo{}; std::make_unique 之间有什么区别?和 std::make_unique> ? 最佳答案 std::make_unique创建一个 Foo具有动态存储持续时间
我正在实现循环数组数据结构,其代码如下所示: struct CircularArrayException : public std::exception { std::string msg;
全部, 我正在使用 C++14 并正在制作一个或多或少的标准单例。我正在使用最新的 Visual Studio 2017。此代码有效: #include class A { public: st
我想知道使用智能指针(如下面代码中的 Box3 )声明 Box 是否比(对我来说更经典)声明有任何优势调用构造函数(如下面代码中的 Box2)或者这两种构造之间的差异本质上是主观偏好的问题。 #inc
我在构建时不断收到以下错误, use of undeclared identifier 'make_unique' m_planet = make_unique(); 我的头文件给出了错误, #inc
我需要一个类作为延迟工厂工作,保存参数以创建另一个类并稍后及时调用 make_unique。到目前为止,我没有任何运气让可变模板版本工作。任何帮助将不胜感激(下面的最小非工作版本)。 template
https://en.cppreference.com/w/cpp/memory/unique_ptr/make_unique写道 std::make_unique 可以实现为 template st
我正在尝试为 std::unique_ptr 创建和使用 make_unique,就像 std::make_shared 存在于 std::shared_ptr described here .赫伯萨
作为 this 的后续行动发布后我想知道它的 make_unique 实现如何与分配函数临时缓冲区数组一起使用,例如以下代码。 f() { auto buf = new int[n]; // te
澄清一下,使用 make_unique 仅在表达式中有多个分配时才增加异常安全性,而不仅仅是一个,对吗?例如 void f(T*); f(new T); 是完全异常安全的(就分配和东西而言),而 vo
为什么没有std::make_unique标准 C++11 库中的函数模板?我发现 std::unique_ptr p(new SomeUserDefinedType(1, 2, 3)); 有点冗长。
考虑以下基类和派生类。 class base { public: int i{9}; virtual void func() { cout ptr{new d
在下面的代码中,有什么方法可以将参数传递给 demo使用时的构造函数 std::make_unique()分配一个 demo[]大批? class demo{ public: int info
有没有办法使用 make_unique 并将函数的输出作为参数传递? auto loadedSurface1 = std::unique_ptr(IMG_Load(path.c_str())); au
这个问题在这里已经有了答案: Template deduction for function based on its return type? (6 个答案) 关闭 4 年前。 例如我得到了这段代
make_unique 如果设计成这样,会不会更有用: template unique_ptr make_unique( ArgT ...args ) { return unique_ptr(
我遇到了 make_unique 的问题,我对此一头雾水。 _replace_find = unique_ptr(new Fl_Input{ 80, 10, 210, 25, "Find:" });
我无法找到任何关于如果将空指针传递给 std::make_unique 会发生什么的文档。 是否抛出异常? 最佳答案 std::make_unique将传递给匹配目标构造函数的所有参数转发。因此,如果
这个问题在这里已经有了答案: using c++ aggregate initialization in std::make_shared (3 个答案) 关闭 5 年前。 刚开始学习智能指针 st
我有一个 Factory 的小例子设计模式,我对这部分很感兴趣: std::make_unique(*this) ...尤其是*this . 这是否意味着 clone()方法返回 std::uniqu
我是一名优秀的程序员,十分优秀!