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

📄 testfinal.java

📁 这是一张java应用教程的随书光盘
💻 JAVA
字号:
final class Test{
	public static int totalNumber= 5 ;
	public final int id;
	public Test(){
		id = ++totalNumber;
	}
	public static void main(String[] args) {
		final Test t = new Test();
		final int i = 10;
		final int j;
		j = 20;
	    System.out.println("The member variable of the class is "+t.id);
		System.out.println("The value of the j is "+j);

	}
}

⌨️ 快捷键说明

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