class W {
static int count=0;
W() {
count++;
System.out.print("c ");
}
public static void main(String[] args) {
System.out.println(new W().count+" "+new W().count);
}
}
预期产出
c 1 c 2
实际输出
抄送 1 2
为什么?