本帖最后由 adamjy 于 2014-4-22 12:36 编辑
代码如下,为什么Test01类中的静态代码块没有执行?
- public class Demo{
- public static void main(String[] args){
- System.out.println(Test01.serialVersion);
- }
- }
- class Test01
- {
- public static final long serialVersion=1L;
- static
- {
- //此代码没有打印
- System.out.println("Static code block invoked.");
- }
- }
复制代码 |