试题详情
- 单项选择题 public class X implements Runnable ( private int x; private int y; public static void main(String [] args) ( X that = new X(); (new Thread(that)) . start( ); (new Thread(that)) . start( ); ) public synchronized void run( ) ( for (;;) ( x++; y++; System.out.printIn(“x = “ + x + “, y = “ + y); ) ) ) What is the result?()
A、 An error at line 11 causes compilation to fail.
B、 Errors at lines 7 and 8 cause compilation to fail.
C、 The program prints pairs of values for x and y that might not always be the same on the same line (for example, “x=2, y=1”)
D、 The program prints pairs of values for x and y that are always the same on the same line (for example, “x=1, y=1”. In addition, each value appears twice (for example, “x=1, y=1” followed by “x=1, y=1”)
E、 The program prints pairs of values for x and y that are always the same on the same line (for example, “x=1, y=1”. In addition, each value appears twice (for example, “x=1, y=1” followed by “x=2s, y=2”)
- E
关注下方微信公众号,在线模考后查看
热门试题
- Which two̳
- 编写一个java应用程序,要求如下&en
- Which option&en
- public class&e
- interface Alti
- 启动一个线程的方法是哪项?()̳
- public class&e
- A JSP pag
- 求三位奇数中,个位数字与十位数字之和除以
- public class&e
- public static&
- 假设有自定义异常类ServiceExce
- public class&e
- 如果想要一个类不能被任何类继承的话,需要
- 修改下面的代码,实现点击按钮Add时,标
- For manageabil
- public c
- Click the
- 数组的长度可以通过以下哪个属性或方法得到
- class Super&en