private static int num = 10; 这个表示什么?num在什么情况下可以被使用?
private static int num = 10;表示在声明私有的静态变量num时并初始化为10,private指定了num的作用域范围,也就是当前类或本类中可以被使用。
静态私有变量