pr5057.java

来自「gcc3.2.1源代码」· Java 代码 · 共 17 行

JAVA
17
字号
/* Test to make sure <clinit> is generated correctly.  */public class PR5057{  public static int x;  static  {    x = 72;  }  public static void main (String[] args)  {    System.out.println (x);  }}

⌨️ 快捷键说明

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