簡述抽象類和介面的區別
很多常見的面試題都會出諸如抽象類和介面有什麼區別,什麼情況下會使用抽象類和什麼情況你會使用介面這樣的問題。下面是小編為你整理的抽象類和介面的區別,供大家閱覽!
抽象類和介面的區別
抽象類
抽象類是用來捕捉子類的通用特性的 。它不能被例項化,只能被用作子類的超類。抽象類是被用來建立繼承層級裡子類的模板。以JDK中的GenericServlet為例:
public abstract class GenericServlet implements Servlet, ServletConfig, Serializable {
// abstract method
abstract void service***ServletRequest req, ServletResponse res***;
void init****** {
// Its implementation
}
// other method related to Servlet
}
當HttpServlet類繼承GenericServlet時,它提供了service方法的實現:
public class HttpServlet extends GenericServlet {
void service***ServletRequest req, ServletResponse res*** {
// implementation
}
protected void doGet***HttpServletRequest req, HttpServletResponse resp*** {
// Implementation
}
protected void doPost***HttpServletRequest req, HttpServletResponse resp*** {
// Implementation
}
// some other methods related to HttpServlet
}
介面
介面是抽象方法的集合。如果一個類實現了某個介面,那麼它就繼承了這個介面的抽象方法。這就像契約模式,如果實現了這個介面,那麼就必須確保使用這些方法。介面只是一種形式,介面自身不能做任何事情。以Externalizable介面為例:
public interface Externalizable extends Serializable {
void writeExternal***ObjectOutput out*** throws IOException;
void readExternal***ObjectInput in*** throws IOException, ClassNotFoundException;
}
當你實現這個介面時,你就需要實現上面的兩個方法:
public class Employee implements Externalizable {
int employeeId;
String employeeName;
@Override
public void readExternal***ObjectInput in*** throws IOException, ClassNotFoundException {
employeeId = in.readInt******;
employeeName = ***String*** in.readObject******;
}
@Override
public void writeExternal***ObjectOutput out*** throws IOException {
out.writeInt***employeeId***;
out.writeObject***employeeName***;
}
}
什麼時候使用抽象類和介面
如果你擁有一些方法並且想讓它們中的一些有預設實現,那麼使用抽象類吧。
如果你想實現多重繼承,那麼你必須使用介面。由於Java不支援多繼承,子類不能夠繼承多個類,但可以實現多個介面。因此你就可以使用介面來解決它。
如果基本功能在不斷改變,那麼就需要使用抽象類。如果不斷改變基本功能並且使用介面,那麼就需要改變所有實現了該介面的類。
Java8中的預設方法和靜態方法
Oracle已經開始嘗試向介面中引入預設方法和靜態方法,以此來減少抽象類和介面之間的差異。現在,我們可以為介面提供預設實現的方法了並且不用強制子類來實現它。這類內容我將在下篇部落格進行闡述。
駕照登出和吊銷的區別