warning C4172: returning address of local variable or temporary

warning C4172: returning address of local variable or temporary 代码如下: CMgr& CMgr::instance(){ CMgr _mgr; //不要忘记static return _mgr;}

如果上述代码中无static 则会提示警告。 将来会产生非常大的麻烦。

你可能感兴趣的:(c,returning)