瀏覽單個文章
T磨人v2
*停權中*
 

加入日期: Mar 2014
文章: 49
其實 interface 我個人覺得也是可以實作成多型 , Ex 如下 (個人淺見 高手們 笑笑就好)
interface IWoman{
public bool isBeauty();
{

class 林志玲 implements IWoman {
public bool isbeauty() { return true; }
}

class 如花 implements IWoman {
public bool isbeauty() { return false; }
}
舊 2015-03-06, 09:41 AM #5
回應時引用此文章
T磨人v2離線中