如何从静态成员函数调用非静态成员函数?

时间:2017-10-16 15:09:19

标签: c++ c++11

我需要从同一个类的非静态成员函数调用非静态成员函数,例如:

  class bintree {
private:
  float root;
  bintree *left;
  bintree *right;


public:
  bintree() : left(nullptr), right(nullptr) {
  }

  bintree(const float &t) : root(t), left(nullptr), right(nullptr) {
  }

  ~bintree() {
    if (left != nullptr)
      delete left;

    if (right != nullptr)
      delete right;
  }

  static void niveles(bintree *);

  static bintree *dameBST(float** array, int depth, int left = 0, int right = -1);
  void quickSort2D(float** arr, int left, int right, int n);

};

我的问题是在dameBST函数中,当我调用quickSort2D程序时,使用' Segmentation fault:11'信息。

bintree *
bintree::dameBST(float **array, int depth, int left, int right)
{
  int n=0;
  depth++;
  bintree *t = new bintree;
  bintree *tl;
  bintree *tr;

  if(depth%2 != 0) { n = 1; }

  quickSort2D(array, left, right -1, n);
  if (right == -1) {right = 10;}
  if (left == right) { return nullptr; }
  if( left == right - 1 ) { return new bintree(array[left][n]); }



  int med = (left + right) / 2;

  t->root = array[med][n];
  tl = dameBST(array, depth, left, med);
  tr = dameBST(array, depth, med + 1, right);
  t->left = tl;
  t->right = tr;




return t;

我不明白为什么。

1 个答案:

答案 0 :(得分:1)

非静态成员函数是必须在类的实例上调用的方法。在静态上下文中没有实例。只有班级。

如果您有t类的对象binkree,则可以调用方法quickSort2D

t.quickSort2D(...)

<强>更新 您可以从非静态函数调用静态方法,但反之亦然