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

📄 inner_interface.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 inner_interface// Generated on Fri Feb 11 16:29:04 PST 2000// Simple inner interface example.class inner_interface {  interface bar {      static final int field = 14022000;      public void inner_interface ();  }  class baz implements inner_interface.bar {    public void inner_interface ()    {      System.out.println ("This is baz.inner_interface "+field);    }  }  void x () {      this.new baz ().inner_interface ();  }  public static void main (String[] arg)  {    System.out.println ("Testing class `inner_interface'...");    new inner_interface ().x();  }}

⌨️ 快捷键说明

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