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

📄 test41.java

📁 SCJP认证考试资料
💻 JAVA
字号:
abstract class SuperTest {
    static int i = 10;
}
class Test41 extends SuperTest implements Inter {
    final static int i;
    static {
	i = 9;
    }
    public void f() {
	System.out.println("i is"+i);
    }
    public static void main(String[] args) {
	Inter t = new Test41();
	t.f();
    }
}
interface Inter {
    int i = 1;
    void f();
}
	      

	    

⌨️ 快捷键说明

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