Java_类的继承

继承关系 (interface)Person-(class)Student-(class)UNStudent

测试文件Test.java

 

Person.java

Java代码 复制代码  收藏代码
  1. /**  
  2.  *   
  3.  * @author yangzhenlin  
  4.  *  
  5.  */  
  6. public interface Person {   
  7.        
  8.     /**  
  9.      * 接口属性默认而且只能是public static final  
  10.      */  
  11.     public static final int age=100;    //必须附初值   
  12.     public abstract void eat(); //可以省略public abstract   
  13.     void rest();    //这是省略写法   
  14.   
  15.     /**  
  16.      * 接口Person在Student补全方法体      
  17.      */  
  18. }  
/**
 * 
 * @author yangzhenlin
 *
 */
public interface Person {
	
	/**
	 * 接口属性默认而且只能是public static final
	 */
	public static final int age=100;	//必须附初值
	public abstract void eat();	//可以省略public abstract
	void rest();	//这是省略写法

	/**
	 * 接口Person在Student补全方法体	
	 */
}

 

你可能感兴趣的:(java,继承,的)