• 2022-06-06
    中国大学MOOC: 对于下面的代码,说法正确的是class A {public: A(int a = 0) { x = a; } static void f1() { y++; };private: int x; static int y;}; int main() { A::f1(); return 0;}