作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在非const成员函数中,我想将“this”传递给函数,但是该函数需要一个shared_ptr。当我尝试通过这种方式:
std::shared_ptr<Piece>(this)
我收到奇怪的异常消息:“Chess.exe触发了断点”
最佳答案
如果您已经在使用共享指针来管理对象的内存,那么这就是std::enable_shared_from_this<T>
的用途,例如
#include <memory>
class Piece;
void takes_a_shared_piece(std::shared_ptr<Piece> ptr) {
//do something
}
class Piece : public std::enable_shared_from_this<Piece> {
public:
Piece();
void do_something() {
takes_a_shared_piece( shared_from_this() );
}
};
关于c++ - 如何从 'this'创建智能指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64862350/
我是一名优秀的程序员,十分优秀!