- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的代码似乎有问题,想知道你们是否可以帮助我找到问题...我已经尝试使用 gdb 和 valgrind,后者“更有用”,但我仍然无法修复我的错误.
下面是我的类(class)代码(这是我的缩小版本,但问题的主要本质仍然存在):
/* vector .h */
template<typename _TYPE_, Int _SIZE_>
class Vec
{
public:
Vec(void);
Vec(const Vec<_TYPE_,_SIZE_>& vec);
virtual ~Vec(void);
Boolean operator==(const Vec<_TYPE_,_SIZE_>& vec ) const;
Boolean operator!=(const Vec<_TYPE_,_SIZE_>& vec ) const;
Boolean operator< (const Vec<_TYPE_,_SIZE_>& vec ) const;
Boolean operator> (const Vec<_TYPE_,_SIZE_>& vec ) const;
Boolean operator<=(const Vec<_TYPE_,_SIZE_>& vec ) const;
Boolean operator>=(const Vec<_TYPE_,_SIZE_>& vec ) const;
const _TYPE_& operator[](const Int index) const;
_TYPE_& operator[](const Int index);
Vec<_TYPE_,_SIZE_> operator+ (const Vec<_TYPE_,_SIZE_>& vec) const;
Vec<_TYPE_,_SIZE_> operator- (const Vec<_TYPE_,_SIZE_>& vec) const;
Vec<_TYPE_,_SIZE_> operator* (const _TYPE_ val ) const;
_TYPE_ operator* (const Vec<_TYPE_,_SIZE_>& vec) const;
Vec<_TYPE_,_SIZE_>& operator+=(const Vec<_TYPE_,_SIZE_>& vec);
Vec<_TYPE_,_SIZE_>& operator-=(const Vec<_TYPE_,_SIZE_>& vec);
Vec<_TYPE_,_SIZE_>& operator*=(const _TYPE_ val );
private:
_TYPE_* __data;
};
template<typename _TYPE_, Int _SIZE_>
Vec<_TYPE_,_SIZE_>::Vec(void)
{
me.__data = new _TYPE_[_SIZE_];
for(Int i = 0; i < _SIZE_; i++)
me.__data[i] = 0;
}
template<typename _TYPE_, Int _SIZE_>
Vec<_TYPE_,_SIZE_>::Vec(const Vec<_TYPE_,_SIZE_>& vec)
{
me.__data = new _TYPE_[_SIZE_];
for(Int i = 0; i < _SIZE_; i++)
me.__data[i] = vec[i];
}
template<typename _TYPE_, Int _SIZE_>
Vec<_TYPE_,_SIZE_>::~Vec(void)
{
printf("~Vec<%p>...", (void*)this);
if(me.__data != NOTHING)
delete[] me.__data;
}
/*******************************************************************************
* COMPARISON OPERATORS.
*******************************************************************************/
template<typename _TYPE_, Int _SIZE_>
Boolean Vec<_TYPE_,_SIZE_>::operator==(const Vec<_TYPE_,_SIZE_>& vec) const
{
if(this == &vec)
return true;
for(Int i = 0; i < _SIZE_; i++)
if(me.__data[i] != vec[i])
return false;
return true;
}
template<typename _TYPE_, Int _SIZE_>
Boolean Vec<_TYPE_,_SIZE_>::operator!=(const Vec<_TYPE_,_SIZE_>& vec) const
{
return !(me == vec);
}
template<typename _TYPE_, Int _SIZE_>
Boolean Vec<_TYPE_,_SIZE_>::operator< (const Vec<_TYPE_,_SIZE_>& vec ) const
{
if(this == &vec)
return false;
for(Int i = 0; i < _SIZE_; i++)
if(me.__data[i] >= vec[i])
return false;
return true;
}
template<typename _TYPE_, Int _SIZE_>
Boolean Vec<_TYPE_,_SIZE_>::operator> (const Vec<_TYPE_,_SIZE_>& vec ) const
{
if(this == &vec)
return false;
for(Int i = 0; i < _SIZE_; i++)
if(me.__data[i] <= vec[i])
return false;
return true;
}
template<typename _TYPE_, Int _SIZE_>
Boolean Vec<_TYPE_,_SIZE_>::operator<=(const Vec<_TYPE_,_SIZE_>& vec ) const
{
return !(me > vec);
}
template<typename _TYPE_, Int _SIZE_>
Boolean Vec<_TYPE_,_SIZE_>::operator>=(const Vec<_TYPE_,_SIZE_>& vec ) const
{
return !(me < vec);
}
/*******************************************************************************
* ELEMENT ACCESSORS.
*******************************************************************************/
template<typename _TYPE_, Int _SIZE_>
const _TYPE_& Vec<_TYPE_,_SIZE_>::operator[](const Int index) const
{
return me.__data[index];
}
template<typename _TYPE_, Int _SIZE_>
_TYPE_& Vec<_TYPE_,_SIZE_>::operator[](const Int index)
{
return me.__data[index];
}
/*******************************************************************************
* ARITHMATICAL OPERATORS.
*******************************************************************************/
template<typename _TYPE_, Int _SIZE_>
Vec<_TYPE_,_SIZE_> Vec<_TYPE_,_SIZE_>::operator+ (const Vec<_TYPE_,_SIZE_>& vec) const
{
Vec<_TYPE_,_SIZE_> tmp;
for(Int i = 0; i < _SIZE_; i++)
tmp[i] = me.__data[i] + vec[i];
return tmp;
}
template<typename _TYPE_, Int _SIZE_>
Vec<_TYPE_,_SIZE_> Vec<_TYPE_,_SIZE_>::operator- (const Vec<_TYPE_,_SIZE_>& vec) const
{
Vec<_TYPE_,_SIZE_> tmp;
for(Int i = 0; i < _SIZE_; i++)
tmp[i] = me.__data[i] - vec[i];
return tmp;
}
template<typename _TYPE_, Int _SIZE_>
Vec<_TYPE_,_SIZE_> Vec<_TYPE_,_SIZE_>::operator* (const _TYPE_ val ) const
{
Vec<_TYPE_,_SIZE_> tmp;
for(Int i = 0; i < _SIZE_; i++)
tmp[i] = me.__data[i] * val;
return tmp;
}
template<typename _TYPE_, Int _SIZE_>
_TYPE_ Vec<_TYPE_,_SIZE_>::operator* (const Vec<_TYPE_,_SIZE_>& vec) const
{
_TYPE_ tmp = 0;
for(Int i = 0; i < _SIZE_; i++)
tmp += me.__data[i] * vec[i];
return tmp;
}
template<typename _TYPE_, Int _SIZE_>
Vec<_TYPE_,_SIZE_>& Vec<_TYPE_,_SIZE_>::operator+=(const Vec<_TYPE_,_SIZE_>& vec)
{
for(Int i = 0; i < _SIZE_; i++)
me.__data[i] = me.__data[i] + vec[i];
return me;
}
template<typename _TYPE_, Int _SIZE_>
Vec<_TYPE_,_SIZE_>& Vec<_TYPE_,_SIZE_>::operator-=(const Vec<_TYPE_,_SIZE_>& vec)
{
for(Int i = 0; i < _SIZE_; i++)
me.__data[i] = me.__data[i] - vec[i];
return me;
}
template<typename _TYPE_, Int _SIZE_>
Vec<_TYPE_,_SIZE_>& Vec<_TYPE_,_SIZE_>::operator*=(const _TYPE_ val )
{
for(Int i = 0; i < _SIZE_; i++)
me.__data[i] = me.__data[i] * val;
return me;
}
/*******************************************************************************
********************************************************************************
** 3D Vector Class.
********************************************************************************
*******************************************************************************/
template<typename _TYPE_>
class Vec3 : public Vec<_TYPE_,3>
{
public:
Vec3(_TYPE_ x = 0, _TYPE_ y = 0, _TYPE_ z = 0);
Vec3(const Vec<_TYPE_,3>& vec);
~Vec3(void);
};
#define Vec3_f Vec3<Float>
template<typename _TYPE_>
Vec3<_TYPE_>::Vec3(_TYPE_ x, _TYPE_ y, _TYPE_ z)
{
me[XYZ::X] = x;
me[XYZ::Y] = y;
me[XYZ::Z] = z;
}
template<typename _TYPE_>
Vec3<_TYPE_>::Vec3(const Vec<_TYPE_,3>& vec)
{
me[XYZ::X] = vec[XYZ::X];
me[XYZ::Y] = vec[XYZ::Y];
me[XYZ::Z] = vec[XYZ::Z];
}
template<typename _TYPE_>
Vec3<_TYPE_>::~Vec3(void)
{
}
/* 物理状态.h */
class PhysicalState
{
public:
PhysicalState(Vec3_f pos = Vec3_f(1,1,1), Vec3_f rot = Vec3_f(2,2,2), Vec3_f scale = Vec3_f(3,3,3));
PhysicalState(const PhysicalState& phys);
~PhysicalState(void);
PhysicalState& operator=(const PhysicalState& phys);
//Private:
Vec3_f position;
Vec3_f rotation;
Vec3_f scale;
};
/* 物理状态.cpp */
PhysicalState::PhysicalState(Vec3_f pos, Vec3_f rot, Vec3_f scale)
{
me.position = pos;
me.rotation = rot;
me.scale = scale;
}
PhysicalState::PhysicalState(const PhysicalState& phys)
{
me.position = phys.position;
me.rotation = phys.rotation;
me.scale = phys.scale;
}
PhysicalState::~PhysicalState(void)
{
}
PhysicalState& PhysicalState::operator=(const PhysicalState& phys)
{
if(this != &phys)
{
me.position = phys.position;
me.rotation = phys.rotation;
me.scale = phys.scale;
}
return me;
}
/* 测试.cpp */
int main(void)
{
PhysicalState ps;
return 0;
}
对长度感到抱歉。这是 valgrind 的输出:
darkdivine@darkdivine-laptop:~/Development/Projects/Engines/DarkDivine$ LD_LIBRARY_PATH=./Bin/Debug/ valgrind
--track-origins=yes --leak-check=full ./Bin/Debug/Test
==18549== Memcheck, a memory error detector
==18549== Copyright (C) 2002-2009, and GNU GPL'd, by Julian Seward et al.
==18549== Using Valgrind-3.6.0.SVN-Debian and LibVEX; rerun with -h for copyright info
==18549== Command: ./Bin/Debug/Test
==18549==
==18549== Invalid free() / delete / delete[]
==18549== at 0x40244D3: operator delete[](void*) (vg_replace_malloc.c:409)
==18549== by 0x804905A: DarkDivine::Vec<float, 3>::~Vec() (Vector.h:91)
==18549== by 0x8048FE3: DarkDivine::Vec3<float>::~Vec3() (Vector.h:282)
==18549== by 0x4036B69: DarkDivine::PhysicalState::~PhysicalState() (PhysicalState.cpp:23)
==18549== by 0x8048E77: main (Test.cpp:15)
==18549== Address 0x4740128 is 0 bytes inside a block of size 12 free'd
==18549== at 0x40244D3: operator delete[](void*) (vg_replace_malloc.c:409)
==18549== by 0x804905A: DarkDivine::Vec<float, 3>::~Vec() (Vector.h:91)
==18549== by 0x8048FE3: DarkDivine::Vec3<float>::~Vec3() (Vector.h:282)
==18549== by 0x8048E3B: main (Test.cpp:13)
==18549==
==18549== Invalid free() / delete / delete[]
==18549== at 0x40244D3: operator delete[](void*) (vg_replace_malloc.c:409)
==18549== by 0x804905A: DarkDivine::Vec<float, 3>::~Vec() (Vector.h:91)
==18549== by 0x8048FE3: DarkDivine::Vec3<float>::~Vec3() (Vector.h:282)
==18549== by 0x4036B77: DarkDivine::PhysicalState::~PhysicalState() (PhysicalState.cpp:23)
==18549== by 0x8048E77: main (Test.cpp:15)
==18549== Address 0x4740168 is 0 bytes inside a block of size 12 free'd
==18549== at 0x40244D3: operator delete[](void*) (vg_replace_malloc.c:409)
==18549== by 0x804905A: DarkDivine::Vec<float, 3>::~Vec() (Vector.h:91)
==18549== by 0x8048FE3: DarkDivine::Vec3<float>::~Vec3() (Vector.h:282)
==18549== by 0x8048E04: main (Test.cpp:13)
==18549==
==18549== Invalid free() / delete / delete[]
==18549== at 0x40244D3: operator delete[](void*) (vg_replace_malloc.c:409)
==18549== by 0x804905A: DarkDivine::Vec<float, 3>::~Vec() (Vector.h:91)
==18549== by 0x8048FE3: DarkDivine::Vec3<float>::~Vec3() (Vector.h:282)
==18549== by 0x4036B9C: DarkDivine::PhysicalState::~PhysicalState() (PhysicalState.cpp:23)
==18549== by 0x8048E77: main (Test.cpp:15)
==18549== Address 0x47401a8 is 0 bytes inside a block of size 12 free'd
==18549== at 0x40244D3: operator delete[](void*) (vg_replace_malloc.c:409)
==18549== by 0x804905A: DarkDivine::Vec<float, 3>::~Vec() (Vector.h:91)
==18549== by 0x8048FE3: DarkDivine::Vec3<float>::~Vec3() (Vector.h:282)
==18549== by 0x8048DE2: main (Test.cpp:13)
==18549==
==18549==
==18549== HEAP SUMMARY:
==18549== in use at exit: 36 bytes in 3 blocks
==18549== total heap usage: 10 allocs, 10 frees, 120 bytes allocated
==18549==
==18549== 12 bytes in 1 blocks are definitely lost in loss record 1 of 3
==18549== at 0x402532E: operator new[](unsigned int) (vg_replace_malloc.c:299)
==18549== by 0x804923C: DarkDivine::Vec<float, 3>::Vec() (Vector.h:72)
==18549== by 0x8048F76: DarkDivine::Vec3<float>::Vec3(float, float, float) (Vector.h:265)
==18549== by 0x40367F1: DarkDivine::PhysicalState::PhysicalState(DarkDivine::Vec3<float>, DarkDivine::Vec3<float>, DarkDivine::Vec3<float>) (PhysicalState.cpp:6)
==18549== by 0x8048DD7: main (Test.cpp:13)
==18549==
==18549== 12 bytes in 1 blocks are definitely lost in loss record 2 of 3
==18549== at 0x402532E: operator new[](unsigned int) (vg_replace_malloc.c:299)
==18549== by 0x804923C: DarkDivine::Vec<float, 3>::Vec() (Vector.h:72)
==18549== by 0x8048F76: DarkDivine::Vec3<float>::Vec3(float, float, float) (Vector.h:265)
==18549== by 0x403681A: DarkDivine::PhysicalState::PhysicalState(DarkDivine::Vec3<float>, DarkDivine::Vec3<float>, DarkDivine::Vec3<float>) (PhysicalState.cpp:6)
==18549== by 0x8048DD7: main (Test.cpp:13)
==18549==
==18549== 12 bytes in 1 blocks are definitely lost in loss record 3 of 3
==18549== at 0x402532E: operator new[](unsigned int) (vg_replace_malloc.c:299)
==18549== by 0x804923C: DarkDivine::Vec<float, 3>::Vec() (Vector.h:72)
==18549== by 0x8048F76: DarkDivine::Vec3<float>::Vec3(float, float, float) (Vector.h:265)
==18549== by 0x4036843: DarkDivine::PhysicalState::PhysicalState(DarkDivine::Vec3<float>, DarkDivine::Vec3<float>, DarkDivine::Vec3<float>) (PhysicalState.cpp:6)
==18549== by 0x8048DD7: main (Test.cpp:13)
==18549==
==18549== LEAK SUMMARY:
==18549== definitely lost: 36 bytes in 3 blocks
==18549== indirectly lost: 0 bytes in 0 blocks
==18549== possibly lost: 0 bytes in 0 blocks
==18549== still reachable: 0 bytes in 0 blocks
==18549== suppressed: 0 bytes in 0 blocks
==18549==
==18549== For counts of detected and suppressed errors, rerun with: -v
==18549== ERROR SUMMARY: 6 errors from 6 contexts (suppressed: 63 from 6)
提前感谢任何可以帮助我的人,这让我发疯了!!广东省。
附言:我=(*这个); 什么都没有 = 0;
最佳答案
您的 vector 类有一个指针成员,但没有定义赋值运算符。赋值发生在 PhysicalState 的构造函数中,您可以在其中按值传递 Vectors。
使用 std::vector 或 boost::array。请。
关于c++ - g++ Double Free 或腐败...但是如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3153966/
#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
我是一名优秀的程序员,十分优秀!