0

我正在尝试使用两个类的变量来从 A 类的变量访问 B 类的变量,反之亦然。但是,我想不出一个可能的解决方案。它总是以循环或以下错误结束:

错误:非静态数据成员的使用无效

这是代码示例:

播放器.h:

#ifndef _PLAYER_H_
  #define _PLAYER_H_

#include "Segment/Dynamic_Segment.h"

class Attributes_P;
class Player;

class Attributes_P : public Attributes_DS{
  protected:
  Player *rel;
  int inv_mcols, inv_mrows;

  public:
  Attributes_P();
  void controls( int MKEY_UP, int MKEY_RIGHT, int MKEY_DOWN, int MKEY_LEFT );
  void inventory( int inv_mcols, int inv_mrows );
};

class Player : public Dynamic_Segment{
  protected:
  int   **inv;

  public:

  int   MKEY_UP, MKEY_RIGHT, MKEY_DOWN, MKEY_LEFT;

  public:

  Player();
  Attributes_P set;
  friend class Core;
  friend class Attributes_P;

};
#endif

播放器.cpp:

#include "Segment/Player.h"

Attributes_P::Attributes_P(){};

Player::Player() : Dynamic_Segment(){
  set.inv_mcols = 0;
  set.inv_mrows = 0;
}

void Attributes_P::inventory( int inv_mcols, int inv_mrows ) {
  this->inv_mcols = inv_mcols;
  this->inv_mrows = inv_mrows;
  &rel.inv = new int*[this->inv_mcols];
  for( int i = 0; i < this->inv_mrows; i++ ) {
    &rel.inv[i] = new int[this->inv_mcols];
  }
}

void Attributes_P::controls( int MKEY_UP, int MKEY_RIGHT, int MKEY_DOWN, int MKEY_LEFT ) {
  &rel.MKEY_UP = MKEY_UP;
  &rel.MKEY_RIGHT = MKEY_RIGHT;
  &rel.MKEY_DOWN = MKEY_DOWN;
  &rel.MKEY_LEFT = MKEY_LEFT;
}

一段时间以来,我一直在用头撞墙……任何想法都将不胜感激!

4

1 回答 1

5

现在我明白了。我想这是

&rel.

应该

rel->

IE

rel->MKEY_UP = MKEY_UP;

你的意思是(*rel).MKEY_UP?这也有效。

于 2013-01-11T16:50:36.430 回答