我有代码,其中必须通过相当多的代码设置全局资源:
globalClass foo; // global variable / object; give it a memory space to live void doSomething( void ) { foo.bar(); // use the global foo object } int main( int argc,const char *argv[] ) { foo( argc ); // foo can only be instantiated in main as it's using // information that's only available here doSomething(); // use the global foo object return 0; }
正如你所看到的,foo具有全局范围 – 但是为了调用它的构造函数,我需要一些仅在main中可用的信息.
我怎样才能做到这一点?
我能想出的唯一解决方案是使foo成为指向globalClass的指针 – 但是每次我使用foo时都会导致指针解除引用.在紧密循环中使用时,这可能会产生性能问题……
PS:在真正的程序main和doSomething将存在于不同的文件中.并且当然保证foo在实例化之前不会被访问.