Segfault在gtest中初始化堆栈上的参考变量

时间:2018-10-17 00:52:34

标签: c++ segmentation-fault containers heap

我正在为TwoDArray容器创建一个测试,但遇到了段错误。 TwoDArray对象在堆上初始化良好,但是当我尝试在堆栈上对其进行测试时,出现了段错误。它使用堆上的向量作为基础容器。我初始化了一个非常好的向量,但是TwoDArray对象在运行时立即给出了段错误。

我最关心的是初始化,因此我切掉了这些功能。

 21 template<typename T>
 22 class TwoDArray{
 23 
 24   private:
 25     int numRows;
 26     int numCols;
 27     std::vector<T> * vecPtr; // Underlying container
 28 
 29   public:
 30     TwoDArray(){ TwoDArray( DEF_ROW_SIZE, DEF_COL_SIZE ); }

 ...

 40     TwoDArray( int m, int n ):numRows(m), numCols(n),
 41                               vecPtr(new std::vector<T>(m*n)){ }

 ...

 43     /* Destructor that specifies the size of the 2D Array
 44      */
 45     ~TwoDArray(){ delete vecPtr; }
 ...

然后进行实际测试:

  2 #include <vector>
  3 #include <gtest/gtest.h>
  4 #include "TwoDArray.hpp"
  5 
  6 class TestTwoDArray : public testing::Test{
  7   public:
  8 
  9     TwoDArray<int> arr1;
 10     std::vector<int> vec;
 11 
 12     virtual void SetUp(){
 14     }
 15 
 16     virtual void TestDown(){
 17     }
 18 };
 19 
 20 TEST_F( TestTwoDArray, validSizeTest ){
 21   //arr1 = TwoDArray<int>();
 22   
 24 }
 25 

 30 int main(int argc, char* argv[]){
 31   TwoDArray<int> arr1;
 32   testing::InitGoogleTest(&argc,argv);
 33   return RUN_ALL_TESTS();
 34 }

我还有另一个类可以在堆上创建对象。这里的第9行给出了段错误。但是第31行没有。也许我不了解如何初始化某些东西。

1 个答案:

答案 0 :(得分:1)

您的默认构造函数不会执行您认为的操作。它将各种成员变量保留为未初始化状态,然后创建一个临时TwoDArray对象。

您想要的委派构造函数是

TwoDArray(): TwoDArray( DEF_ROW_SIZE, DEF_COL_SIZE ) { }