多选题

知识点:Java 9/10(单选) What is the output ...

发布于 2022-03-03 17:30:59

知识点:Java 9/10(单选)
What is the output of the following program?

class A {
    static { System.out.print("A") }
}
class B {
    static { System.out.print("B") }
}
class C {
    static { System.out.print("C") }
}
class D {
    static { System.out.print("D") }
}

public class InitOrder {
    B b = new B()
    static A a = new A()
    public static void main(String[] args) {
        try {
            int a = 1
            if (a > 0) {
                new D()
                throw new RuntimeException("")
            } else {
                new C()
            }
        } finally {
            new B()
        }
    }
}


登录后免费查看答案
关注者
0
被浏览
27
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看