多选题 Given:
1. class One {
2. int x = 0;
3. {assert x == i; }
4. }
5. public class Two {
6. public static void main(String[] args) {
7. int y = 0;
8. assert y == 0;
9. if(args.length > 0)
10. new One();
11. }
12. }
Which of the following will mn without error? (Choose all that apply.)
【正确答案】 A、B、C、E、G
【答案解析】