- 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/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!