1. 程式人生 > >JavaSE8基礎 接口之間實現多繼承

JavaSE8基礎 接口之間實現多繼承

cnblogs tca 分享 alt inter ast 留言 coo interface



os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)


代碼:

interface cleanTrain {
	public abstract void clean();
}

interface cookTrain {
	public abstract void cook();
}

//接口之間實現多繼承
interface MotherTrain extends cleanTrain,cookTrain {
	public abstract void loveMore();
}

class Mother extends Object implements MotherTrain {
	public void clean(){}
	public void cook(){}
	public void loveMore(){}
}

class Demo {
	public static void main(String[] agrs) {
		
	}
}


結果:

技術分享



Java優秀,值得學習。
學習資源:itcast視頻庫。如果您有公開的資源,可以分享給我的話,用您的資源學習也可以。
博文是觀看視頻後,融入思考寫成的。博文好,是老師講得好。博文壞,是 給最苦 沒認真。
如果您覺得博文有可以改進的地方,留言即可。

JavaSE8基礎 接口之間實現多繼承