标签: c++
对于下面的单例类,其中的内存将来自(Stack或Global memroy)
class Singleton { public: static Singleton* get() { static Singleton instance; return &instance; } };
答案 0 :(得分:3)
instance将位于静态存储中(或称为全局)。
instance