quiz11_10.java

来自「程序练习中包括书中实例程序代码和练习中要用到的代码,是压缩文件」· Java 代码 · 共 20 行

JAVA
20
字号
public class Quiz11_10 {
   public Quiz11_10() throws InterruptedException {
      // A
   }
   public void f1() throws InterruptedException {
      // B
   }
   public static void f2()
                      throws InterruptedException {
      // C
   }
   private void f3() throws InterruptedException {
      // D
   }
   public synchronized void f4()
                      throws InterruptedException {
      // E
      f3();
   }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?