zoukankan      html  css  js  c++  java
  • 19.创建如下三个类:(People类中的三个方法分别输出一些信息,ChinaPeople 和AmericanPeople类重写父类的三个方法)。

    package zuoye2;
    
    public class People 
    {
    	protected double height;
    	protected double weight;
    	private String guojia;
    	
    	public double getHeight() {
    		return height;
    	}
    	public void setHeight(double height) {
    		this.height = height;
    	}
    	public double getWeight() {
    		return weight;
    	}
    	public void setWeight(double weight) {
    		this.weight = weight;
    	}
    	public String getGuojia() {
    		return guojia;
    	}
    	public void setGuojia(String guojia) {
    		this.guojia = guojia;
    	}
    	
    	
    	public People() {
    		super();
    	}
    	public People(double height, double weight) {
    		super();
    		this.height = height;
    		this.weight = weight;
    	}
    	
    	public  void speackHello()
    	{
    		System.out.println("Hello");
    	}
    	public  void averageHeight()
    	{
    		System.out.println("平均身高是:");
    	}
    	public  void averageweight()
    	{
    		System.out.println("平均体重是:");
    	}
    
    }
    

      

    package zuoye2;
    
    public class ChinaPeople extends People {
    	
    	
    	public void chinaGongfu()
    	{
    		System.out.println("坐如钟,站如松,行如风,睡如弓");
    	}
    	public  void speackHello()
    	{
    		System.out.println("你好");
    	}
    
    }
    

      

    package zuoye2;
    
    public class AmericanPeople extends People {
    
    	
    	public void americanBoxing()
    	{
    		System.out.println("直拳,勾拳");
    	}
    }
    

      

    package zuoye2;
    
    public class Ceshi_people {
    
    	public static void main(String[] args) {
    
    
    		ChinaPeople c=new ChinaPeople();
    		
    		c.setHeight(180.0);
    		c.setWeight(70.0);
    		c.setGuojia("中国");
    		c.speackHello();
    		System.out.println(c.getGuojia());
    		c.averageHeight();System.out.println(c.getHeight());
    		c.chinaGongfu();
    		
    		System.out.println("");
    		
    		AmericanPeople a=new AmericanPeople();
    		a.setHeight(175.0);
    		a.setWeight(80.0);
    		a.setGuojia("美国佬");
    		a.speackHello();
    		System.out.println(a.getGuojia());
    		a.averageHeight();
    		System.out.println(a.getHeight());
    		a.averageweight();
    		System.out.println(a.getWeight());
    		a.americanBoxing();
    		
    		
    
    	}
    
    }
    

      

  • 相关阅读:
    jchdl
    jchdl
    UVa 10256 (判断两个凸包相离) The Great Divide
    UVa 11168 (凸包+点到直线距离) Airport
    LA 2572 (求可见圆盘的数量) Kanazawa
    UVa 10652 (简单凸包) Board Wrapping
    UVa 12304 (6个二维几何问题合集) 2D Geometry 110 in 1!
    UVa 10674 (求两圆公切线) Tangents
    UVa 11796 Dog Distance
    LA 3263 (平面图的欧拉定理) That Nice Euler Circuit
  • 原文地址:https://www.cnblogs.com/liuyanzeng/p/5894078.html
Copyright © 2011-2022 走看看