您好,登錄后才能下訂單哦!
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ì)本站的支持!
免責(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)容。