91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中的interface接口實例詳解

發布時間:2020-10-16 18:34:27 來源:腳本之家 閱讀:208 作者:Engineer-MrYang 欄目:編程語言

 java中的interface接口實例詳解

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

java接口的特點如下:

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

接下來看一個實現接口的案例:

 



package hello;   interface competer{ //定義接口 void set_compt(int com); void print_compt_information(); } class bj 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("筆記本"); } } 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(); } }

運行結果:

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

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大安市| 百色市| 松潘县| 博乐市| 乐昌市| 宜章县| 水城县| 临高县| 东源县| 桂阳县| 团风县| 通河县| 达日县| 天门市| 涞水县| 丰都县| 龙井市| 镇巴县| 黄山市| 太保市| 安阳市| 红河县| 义乌市| 泸定县| 新绛县| 马山县| 中江县| 兴海县| 子长县| 博客| 永年县| 上犹县| 湘潭市| 石城县| 宁乡县| 黄浦区| 武邑县| 娱乐| 鄢陵县| 沛县| 镇平县|