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.
当结构的定义包含其自身的静态实例时,这意味着什么?
struct Quaternion { float q[4]; static Quaternion IDENTITY; };
这意味着此代码是 C++ 而不是 C。
静态成员具有静态生命周期,并且在四元数实例之间“共享”(即它不是其中任何一个的一部分)。