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

📄 statictest.java

📁 java 教程源码
💻 JAVA
字号:
//c4:StaticTest.java
//author:ZhangHongbin 
//This program is protected by copyright laws.
//Static Test.  
class Mankind
{
	static int sex;
}
public class StaticTest extends Mankind
{
	
	public static void main(String[] args)
	{
		Mankind somePerson=new Mankind();//创建对象
		Mankind anotherPerson=new Mankind();
		System.out.println("0.somePerson.sex="+somePerson.sex);
		System.out.println("0.anotherPerson.sex="+anotherPerson.sex);
		somePerson.sex=100;//给对象中的数据赋值
		System.out.println("1.somePerson.sex="+somePerson.sex);
		System.out.println("1.anotherPerson.sex="+anotherPerson.sex);
		anotherPerson.sex=200;
		System.out.println("2.somePerson.sex="+somePerson.sex);
		System.out.println("2.anotherPerson.sex="+anotherPerson.sex);

	}
} 

⌨️ 快捷键说明

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