溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

java中的interface接口實(shí)例詳解

發(fā)布時(shí)間:2020-10-16 18:34:27 來(lái)源:腳本之家 閱讀:207 作者:Engineer-MrYang 欄目:編程語(yǔ)言

 java中的interface接口實(shí)例詳解

接口:Java接口是一些方法表征的集合,但是卻不會(huì)在接口里實(shí)現(xiàn)具體的方法。

java接口的特點(diǎn)如下:

1、java接口不能被實(shí)例化
2、java接口中聲明的成員自動(dòng)被設(shè)置為public,所以不存在private成員
3、java接口中不能出現(xiàn)方法的具體實(shí)現(xiàn)。
4、實(shí)現(xiàn)某個(gè)接口就必須要實(shí)現(xiàn)里面定義的所有方法。

接下來(lái)看一個(gè)實(shí)現(xiàn)接口的案例:

 



package hello;   interface competer{ //定義接口 void set_compt(int com); void print_compt_information(); } class bj implements competer{ //接口實(shí)現(xiàn) int com ; public void set_compt(int com) { this.com = com ; // System.out.println("端口" + com); } public void print_compt_information() { System.out.println("端口" + com); System.out.println("筆記本"); } } class taishi implements competer{ int com ; public void set_compt(int com) { this.com = com ; //System.out.println("端口" + com); } public void print_compt_information() { System.out.println("端口" + com); System.out.println("臺(tái)式機(jī)"); } } public class inter { public static void main(String[] args) { taishi com = new taishi(); bj bjj = new bj(); com.set_compt(100); bjj.set_compt(120); com.print_compt_information(); bjj.print_compt_information(); } }

運(yùn)行結(jié)果:

端口100
臺(tái)式機(jī)
端口120
筆記本

感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI