Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可以在 BREW 中创建和使用静态字段和方法吗?我正在用 C++ 编写
静态方法:好的,它就像简单的独立函数,具有额外的访问权限。
静态字段:仅 POD(仍需谨慎使用)。BREW 运行时不调用全局变量和静态字段的构造函数(它们几乎相同,除了访问权限和命名空间),因此任何初始化都会失败。
请注意,单例将起作用(静态实例指针是 POD),因此您必须改用它们。