0

我正在尝试定义一些全局变量,这些变量应该对所有函数都可用,但想从主程序初始化。谁能帮我语法?请注意,C++ 类等仍然有点初学者。因为我需要多次运行该程序的同一个副本,并且不希望在该程序的多个实例中拥有相同的共享类 - 需要确保我创建一个新的类中的主体。还想提一下 - printvars - 对我来说是一个预先构建的函数,我无法控制将任何指针变量传递给它 - 只是我只能在该函数中使用全局变量。

class gvars
{
   public:
   int x=0;
   int y=0;
   gvars() {}
   ~gvars() {}
};

std::unique_ptr<gvars> *g=NULL;  // Must be a pointer to class

//I can't pass any parameters to this function
//Only have control over the body of the program to access global vars
void printvars()
{
   std::cout << (*g).x << " " << (*g).y << std::endl;
}

int main()
{

  if (g==NULL)
  {
     g=new gvars();  // This is critical  - create a new class here only
  }

  (*g).x=10;
  (*g).y=20;

  printvars();  // Expected output :  10   20

  delete g;

  return 0;
}
4

1 回答 1

1

代码很好,除了只有一行。尝试改变

std::unique_ptr<gvars> *g=NULL;  // Must be a pointer to class

gvars*g=NULL;

程序肯定会在每次运行时创建/删除你的类的新实例。也printvars应该工作正常。

于 2013-05-19T02:12:53.177 回答