真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java中的interface接口實例詳解

 java中的interface接口實例詳解

創(chuàng)新互聯(lián)專注網(wǎng)站設(shè)計,以設(shè)計驅(qū)動企業(yè)價值的持續(xù)增長,網(wǎng)站,看似簡單卻每一個企業(yè)都需要——設(shè)計,看似簡潔卻是每一位設(shè)計師的心血 十余年來,我們只專注做網(wǎng)站。認真對待每一個客戶,我們不用口頭的語言來吹擂我們的優(yōu)秀,1000+的成功案例見證著我們的成長。

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

java接口的特點如下:

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

接下來看一個實現(xiàn)接口的案例:

 



package hello;   interface competer{ //定義接口 void set_compt(int com); void print_compt_information(); } class bj implements competer{ //接口實現(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("臺式機"); } } 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(); } }

運行結(jié)果:

端口100
臺式機
端口120
筆記本

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


網(wǎng)頁標題:java中的interface接口實例詳解
文章轉(zhuǎn)載:http://weahome.cn/article/jpgihj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部