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

📄 testmembervariable.java

📁 主要是对于JAVA的编程的基本语言 希望能够帮得上你。
💻 JAVA
字号:
package variable;

/*
 * 成员变量的初始化问题
 */

public class TestMemberVariable {
	
	static int age;
	static char sex;
	static double score;
	static boolean married;

	public static void main(String[] args) {
		System.out.println("Your age is "+age);
		System.out.println("Your sex is "+sex);
		System.out.println("Your score is "+score);
		System.out.println("Are you married? "+married);
	
	}
}

⌨️ 快捷键说明

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