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

📄 kids1.java

📁 java 教程源码
💻 JAVA
字号:
//c4:Kids1.java
//author:ZhangHongbin 
//This program is protected by copyright laws.
//Kids extends Mankind.  
class Mankind
{
	int sex;
	int salary;
	void manOrWoman( int sexValue)
	{ 
		switch(sexValue)
		{	
			case 0:
					System.out.println("a man");
					break;
			case 1:
					System.out.println("a woman");
					break;
			default:
					System.out.println("not a man or a women");
		}
	}
	void employed (int salaryValue)
	{
		if (salaryValue==0)
			System.out.println("no job ");
		else
 			System.out.println("job");
	}
}
public class Kids1 extends Mankind
{
	int yearsOld;
	void printAge()
	{ 
		System.out.println("age= "+yearsOld);
	}
	void employed(int salaryValue)
	{
		System.out.println("kids should study and no work ");
	}
	public static void main(String[] args)
	{
		System.out.println("Mankind start----------");
		Mankind somePerson=new Mankind();//创建对象
		somePerson.sex=1;//给对象中的数据赋值
		somePerson.manOrWoman( somePerson.sex);//执行对象中的方法
		somePerson.salary=5; //给对象中的数据赋值
		somePerson.employed(somePerson.salary); //执行对象中的方法
		System.out.println("Kids1 start---------- ");
		Kids1 someKid=new Kids1();//创建对象
		someKid.sex=0;//给对象中的数据赋值
		someKid.manOrWoman( someKid.sex);//执行对象中的方法
		someKid.salary=5; //给对象中的数据赋值
		someKid.employed(100); //执行对象中的方法

	}
} 

⌨️ 快捷键说明

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