static变量class A{ void print(){ static int kk = 0; }};class B{ void takd(){ static int kk = 0; }};两个类 的函数里 有同样的static 变量 会不会覆盖 会不会冲突?[解决办法]不冲突