⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 anonarray2.java

📁 this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
💻 JAVA
字号:
// Class anonarray2// Generated on Tue Feb  1 21:14:06 PST 2000// Anonymous array, with a non primitive type.class anonarray2 {  static void foo (String [][] x) {      for (int i = 0; i < x.length; i++)          {              for (int j = 0; j < x[i].length; j++)                  System.out.print (x[i][j]);              System.out.println();          }  }  public static void main (String[] arg)  {      foo (new String[][] {{"2","3"},{"5","7"}});      System.out.println ((new String [][] {{"11","13"},{"17","19"}}).length);      System.out.println ((new String [][] {{"23","29"},{"31","37"}})[0][1]);  }}

⌨️ 快捷键说明

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