JAVA面向对象的三大特性 封装
2018-06-18 03:49:08来源:未知 阅读 ()
1 public class HelloWorld { 2 private int a =1; 3 public int getA() { 4 return a; 5 } 6 public void setA(int a) { 7 this.a = a; 8 } 9 }
1 package com.lx; 2 public class lx1 { 3 int a =1; 4 public void a1(){ 5 System.out.println("我是外部类的方法!"); 6 } 7 public class lx2{ 8 int a = this.a; 9 } 10 }
1 package com.lx; 2 import com.lx.lx1.lx2; 3 public class lx3 { 4 lx1 l1 = new lx1(); 5 lx2 l2 = new lx2(); 6 }
1 abstract class Person { 2 public abstract void eat(); 3 } 4 5 class Child extends Person { 6 public void eat() { 7 System.out.println("eat something"); 8 } 9 } 10 11 public class Demo { 12 public static void main(String[] args) { 13 Person p = new Child(); 14 p.eat(); 15 } 16 }
1 abstract class Person { 2 public abstract void eat(); 3 } 4 5 public class Demo { 6 public static void main(String[] args) { 7 Person p = new Person() { 8 public void eat() { 9 System.out.println("eat something"); 10 } 11 }; 12 p.eat(); 13 } 14 }
1 interface Person { 2 public void eat(); 3 } 4 5 public class Demo { 6 public static void main(String[] args) { 7 Person p = new Person() { 8 public void eat() { 9 System.out.println("eat something"); 10 } 11 }; 12 p.eat(); 13 } 14 }
1 public class Demo { 2 public static void main(String[] args) { 3 Thread t = new Thread() { 4 public void run() { 5 for (int i = 1; i <= 5; i++) { 6 System.out.print(i + " "); 7 } 8 } 9 }; 10 t.start(); 11 } 12 }
1 public class Demo { 2 public static void main(String[] args) { 3 Runnable r = new Runnable() { 4 public void run() { 5 for (int i = 1; i <= 5; i++) { 6 System.out.print(i + " "); 7 } 8 } 9 }; 10 Thread t = new Thread(r); 11 t.start(); 12 } 13 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 国外程序员整理的Java资源大全(全部是干货) 2020-06-12
- 2020年深圳中国平安各部门Java中级面试真题合集(附答案) 2020-06-11
- 2020年java就业前景 2020-06-11
- 04.Java基础语法 2020-06-11
- Java--反射(框架设计的灵魂)案例 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash