- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我在图形应用程序上工作,并且一直在使用共享指针和唯一指针,主要是因为它为我处理内存重新分配(又名方便),这可能很糟糕(如果这就是我使用它们的原因)。
我最近在 Stackoverflow 上阅读了一个问题的答案,其中提到根据 B. Stroustrup 的说法,通常不应使用唯一/共享指针,而应改为按值传递参数。
我有一个图形方面的案例,我认为使用 shared_ptr 是有意义的,但我想从专家那里知道(我不是 C++ 专家)我是否在做/想它,如果是的话他们会做什么(为了符合 C++ 推荐和效率)
我将以渲染/光线追踪中出现的一般问题为例。在这个特定的问题中,我们有一个对象池(我们将使用三角形来进行解释)和一个结构,为了解释的简单性,我们将其称为常规 3D 网格。假设在某个时候我们需要将三角形插入网格:这意味着我们需要检查每个插入的三角形的边界体积是否与网格中的任何单元格重叠,它确实如此,然后每个重叠的单元格需要保留对该三角形的指针/引用(供以后使用)。一个三角形可能与 1 个以上的单元格重叠,因此它可以被多个单元格多次引用(你看我在这里使用 shared_ptr
的地方)。
请注意,在网格结构之外,我们不需要三角形池(因此从技术上讲,这里拥有三角形池的对象是网格,或者更准确地说是网格的单元格)。
class Grid
{
struct Cell
{
std::vector<std::shared_ptr<const Triangle>> triList;
};
void insert(triangle*& tri_)
{
std::shared_ptr<const Triangle> tri = tri_;
for (each cell overlapped by tri) {
// compute cell index
uint32_t i = ...
cells[i].triList.push_back(tri);
}
}
Cell cells[RES * RES * RES];
};
void createPoolOfTrianglesAndInsertIntoGrid()
{
Grid grid;
uint32_t maxTris = 32;
Triangle* tris = new Triangles[maxTris];
// process the triangles
...
// now insert into grid
for (uint32_t i = 0; i < maxTris; ++i) {
// use placement new
Triangle* tri = new (&tris[i]) Triangle;
grid.insert(tri);
}
// no need to delete tris here ... it should be done by
// the grid when we go out of this function's scope
}
这听起来很复杂,但我进行此设计的动机是遵循 Stroustrup 的建议。在这种情况下,函数 createPoolOfTrianglesAndInsertIntoGrid
不拥有三角形,它是网格的单元格。所以我在函数 createPoolOfTrianglesAndInsertIntoGrid
中分配内存,因为这是我需要创建三角形的地方,然后我使用 placement new 方法获取指向该池中每个三角形的指针,然后我可以将其传递到网格 insert
方法(我将该对象的内存管理推迟到该方法)。在那里,它将三角形转换为 shared_ptr
并且单元格现在可以共享对它的“引用”(使用 shared_ptr
)。
我想知道您认为这是朝着正确的方向发展,还是看起来完全错误,无论是在实现方面还是在可能的效率损失方面(我分配了一个内存池,然后使用用于创建临时三角形的新位置,然后将其传递给网格插入方法,然后转换为 shared_ptr,...)
我正在努力学习和改进我的代码,希望您能提供宝贵的专业反馈。
编辑:基本上我正在尝试找到解决该问题的正确方法 + 我将尝试稍后根据您的评论提供一些修改
最佳答案
在我看来,您的 Grid
拥有三角形。我假设三角形相对较轻(3-5 维?)。
我认为这样的东西可能适合。我在 Grid
中使用 container 来按值 获取三角形的所有权。当 Grid
超出范围时,容器 将删除三角形。
然后每个 Cell
只使用原始指针来跟踪它引用的三角形。 Cell
不拥有三角形,它们只是保存指向 Grid
拥有的三角形的指针。
class Grid
{
struct Cell
{
std::vector<Triangle*> triList; // non owning
};
void insert(Triangle tri) // pass by value
{
tris.push_back(tri); // Grid owns this by value
for(each cell overlapped by tri) {
// compute cell index
uint32_t i = ...
cells[i].triList.push_back(&tris.back());
}
}
// Use a deque because it won't re-allocate when adding
// new elements to the end
std::deque<Triangle> tris; // elements owned by value
Cell cells[RES * RES * RES]; // point to owned elements
};
void createPoolOfTrianglesAndInsertIntoGrid()
{
Grid grid; // owns the triangles (by value)
uint32_t maxTris = 32;
std::vector<Triangle> tris(maxTris);
// process the triangles
// ...
// now insert into grid
for(auto tri: tris)
grid.insert(tri);
}
// no need to delete tris here ... it should be done by
// the grid when we go out of this function's scope
}
注意:我使用std::deque
在Grid
中按值存储三角形。那是因为它在添加新三角形时永远不会重新分配其内部存储器。如果您在此处使用 std::vector
,那么当 std::vector
自行调整大小时,您的原始指针最终会悬空。
或者:
鉴于看起来您在函数中构建了所有三角形,然后将它们全部传递到 Grid
中,为什么一次只做一个呢?你可以一次性把整个容器递进去。如果您使用移动语义执行此操作,您甚至不必复制任何内容:
class Grid
{
struct Cell
{
std::vector<Triangle*> triList; // non owning
};
// Accept the entire container in-tack
// (no reallocations allowed after this point)
void insert(std::vector<Triangle> tris) // pass by value (able to move in)
{
//
for(auto& tri: tris)
{
for(each cell overlapped by tri) {
// compute cell index
uint32_t i = ...
cells[i].triList.push_back(&tri);
}
}
}
// Using a vector so it MUST NOT be resized after
// Cells have been pointed to its elements!!!
std::vector<Triangle> tris; // elements owned by value
Cell cells[RES * RES * RES]; // point to owned elements
};
void createPoolOfTrianglesAndInsertIntoGrid()
{
Grid grid; // owns the triangles (by value)
uint32_t maxTris = 32;
// Build the triangles into
std::vector<Triangle> tris(maxTris);
// process the triangles
// ...
// now insert into grid
grid.insert(std::move(tris)); // move the whole darn container (very efficient)
// no need to delete tris here ... it should be done by
// the grid when we go out of this function's scope
}
注意:现在我使用了一个 std::vector
,因为您没有在三角形到达 Grid
后一个一个地添加它们。但是你必须确保 inside Grid
拥有的 `std::vector 没有调整大小。
关于c++ - shared_ptr, unique_ptr, ownership,在这种特殊情况下我是不是做得太过分了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39286287/
我想检查是否可以限制架构的所有权不被另一个角色继承。我有一个托管架构,它由角色A拥有(具有所有权特权)。角色B继承角色A,但我不希望角色B继承所有权特权。。这种设置在雪花中可能吗?也就是说,在这种情况
以下代码: public string add_button_tooltip_markup { get { return add_button.get_tooltip_markup (); }
我一直在研究 Cake 的 Auth/ACL 组件。我已经阅读了文档并完成了教程,但我仍然对我实际可以完成的事情不满意。我见过couple的other接近,但我不能说,因为我确实有一个直接的赢家。在我
对措辞表示歉意,我真的找不到其他方式来表达它。 我有一个像这样的历史表: id date from_id to_id 1 2010-01-01 A B 1
由于我的母语不是英语,所以我可能会遗漏一些东西,所以也许这里有人比我更了解。 取自WSASend MSDN 上的说明: lpBuffers [in] A pointer to an array of
我阅读了以下帖子 association owned by classifier and association owned by relationship in UML Setting the as
仍在寻找解决方案 (2/24/16) 我的用户模型与组之间存在 has_many :through 关系。所以用户有很多组,组有很多用户,但我也想由一个用户建立组的所有权,他可以做出最终的决定。 这个
我正在编写一个小的 Java 程序,它应该运行一个外部程序将图像复制到系统剪贴板(即 Windows 7“截图工具”),等待它完成,将图像从剪贴板保存到磁盘并将 URL(可以从中访问图像)复制到剪贴板
我在图形应用程序上工作,并且一直在使用共享指针和唯一指针,主要是因为它为我处理内存重新分配(又名方便),这可能很糟糕(如果这就是我使用它们的原因)。 我最近在 Stackoverflow 上阅读了一个
我对 Android 11 中的存储更改有疑问。如果我理解正确,应用程序可以读取/写入/删除它创建的文件。我也可以像这样访问这些文件: File path = new File(Environment
谁能帮我澄清一下QML Repeater docs意思是首先说 “Items instantiated by the Repeater are inserted, in order, as child
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我有一个方法将间接指针作为参数,如果有错误,则将其设置为错误对象。我正在尝试打开尽可能多的警告。但其中之一 - Implicit ownership types on out parameters -
我正在使用 Boost.Python 向 python 公开一个 C++ 树类。节点类持有子节点列表并提供方法 void add_child(Node *node) Node 类获取提供的 Node
基于 this Stroustrup 建议“函数中的指针不应表示所有权” 问题> 有人可以给我一些详细的解释吗?最好能举例说明。 谢谢 最佳答案 如果某个代码负责删除指针或将所有权转移给其他人,则该指
我正在尝试在 docker 容器中运行 postgresql,但当然我需要让我的数据库数据保持持久性,所以我尝试使用仅数据容器来公开卷以在此位置存储数据库。 所以,我的数据容器有这样的 Dockerf
我对string::assign方法的理解有些差距。考虑以下代码: char* c = new char[38]; strcpy(c, "All your base are belong to us!
我有一个基于 Ruby on Rails 的站点,我需要在其中运行 rake assets:precompile 以获得正确的预编译 Assets 。但是,每当我运行此命令时,我应用程序的 tmp 目
我已经设置了一个服务帐户来复制用户上传的文件。如何将所有权转移到不同的电子邮件地址? 我有: new_permission = {'value': 'me@example.com', 'type':
我一直在尝试包装 CPointer 类型的 native 对象,认为该对象控制底层 native 对象的生命周期。 在 C++ 术语中,我会做类似的事情: class T { private: U
我是一名优秀的程序员,十分优秀!