- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 A
类,它使用 boost::intrusive_ptr
保存一些数据:
#include "Data.h"
class A {
boost::intrusive_ptr<Data> data;
}
类 Data
是基类 RefCounted
的后继类,根据需要为其实现函数 intrusive_ptr_release
和 intrusive_ptr_add_ref
.
我要减少编译时间,所以我尝试使用前向声明:
class Data;
class A {
boost::intrusive_ptr<Data> data;
}
它不编译说
'intrusive_ptr_release': identifier not found
我尝试添加所需函数的声明:
class Data;
void intrusive_ptr_add_ref(RefCounted *);
void intrusive_ptr_release(RefCounted *);
class A {
boost::intrusive_ptr<Data> data;
}
现在它说
'void intrusive_ptr_release(RefCounted *)': cannot convert argument 1 from 'Data *' to 'RefCounted *' pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
我理解编译器错误的含义:它不知道 RefCounted
是 Data
的父类(super class),因为 Data
是一个不完整的类型。但是,无论如何,这里有什么方法或技巧可以避免在处理 boost 侵入式指针时包含 header Data.h
以加快编译速度?
最佳答案
我知道解决您的问题的一种方法是确保您的头文件中没有(隐式)为 A
定义的构造函数或析构函数。最小的例子看起来像:
(头文件)
#include <boost/intrusive_ptr.hpp>
class Data;
struct A {
boost::intrusive_ptr<Data> data;
A();
~A();
};
void foo() {
A a;
}
然后,您会在某处有一个 .cpp 文件,它会为 A 定义(可能默认)构造函数和析构函数,并包含类 Data
的定义。
关于c++ - boost::intrusive_ptr 类的前向声明以减少编译时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53767676/
我已经阅读了很多关于 smart ptr 的内容,并决定在我自己的实现中使用 intrusive_ptr 进行引用计数。 也就是说,我现在不得不面对另一个问题,如何解决考虑到 weak_ptr 不能与
我想使用 boost::intrusive_ptr 来引用我的类 x::Y,所以我添加了一个 references 字段和友元声明对于 release 和 add_ref 函数,它们应该在命名空间 b
boost::intrusive_ptr (或自制版本)最简单的样子是这样的: template class intrusive_ptr { public: intrusive_ptr(T*
是否有可能找出要为使用 boost::intrusive_ptr 的库链接哪个库文件? 我尝试使用 boost bcp 工具,但这并没有给出编译 dylib boost::intrusive_ptr
我有 A 类,它使用 boost::intrusive_ptr 保存一些数据: #include "Data.h" class A { boost::intrusive_ptr data; }
我有一个基类,它为子类提供 intrusive_ptr_add_ref 和 intrusive_ptr_release 以与 boost::intrusive_ptr 一起使用。 有问题的代码在 Ma
我正在使用 boost::intrusive_ptr 来处理自动内存管理,但现在我想将它们与池化对象分配结合使用。 Boost Pool 是一个很好的起点,还是有另一种普遍接受的使用“智能指针”进行池
在我的代码中,当涉及到 intrusive_ptrs 时,我遵循两条规则: 按值传递原始指针意味着保证原始指针在该函数的生命周期内有效。 如果要在函数的生命周期之外存储和使用原始指针,则应将其存储在
我正在使用 boost::intrusive_ptr 作为我的引用计数智能指针。我正在使用这样的东西: http://www.codeproject.com/KB/stl/boostsmartptr.
在工作中,我们有一个基类,我们称它为 IntrusiveBase,它的作用类似于混合,允许将类存储在 boost:intrusive_ptr 中。也就是说,它为其子类提供引用计数并定义 intrusi
我读过 article about using boost::intrusive_ptr for managing COM objects .作者展示了一个包装类,它负责为通常的 COM 语义调整智能
具体来说,我需要声明(据我所知)intrusive_ptr_{add_ref,release} 作为我引用类的 friend : #include using boost::intrusive_pt
我有一个生产者-消费者安排来处理来自网络的事件。 Dispatcher 通过工作线程拥有的互斥锁保护队列为多个 EventHandler 线程提供工作。放入队列的事件对象使用boost::intrus
C++11 是否有与 boost::intrusive_ptr 等价的东西? 我的问题是我的 C++ 代码有一个 C 风格的界面。接口(interface)的两端都可以使用 C++,但出于兼容性原因,
我在 boost::intrusive_ptr 中包含一个 Locker 类型的小模板类,我想将其存储在 std::map 中: template bool LockerManager:: Ad
假设我有一个 list类: template class list { ... private: class node { ... private:
违规代码: template class SharedObject { public: typedef boost::intrusive_ptr Pointer; typedef boost
要求 我正在编写一个名为RCObject的类,它表示“引用计数对象”; RCObject类应该是抽象的,用作框架的基类(EC++3项目7); 应该禁止在堆栈上创建RCObject子类的实例(MEC++
我想一次准确地分配一个对象并将其推送到几个列表中。如何使用 boost::intrusive_ptr 执行此操作和 boost::intrusive::list ?或者我应该使用另一个容器和引用计数器
boost::intrusive 文档描述了如何 you can use smart pointers with intrusive containers但接着说你不能使用你最有可能使用的智能指针,“
我是一名优秀的程序员,十分优秀!