摘要:
public class MyThread implements Runnable { @Override public void run() { // TODO Auto-generated method stub for (int i = 0; i < 100; i++) { System.out.println(Thread.cu... 阅读全文
摘要:
public class MyThread extends Thread { public void run() { for (int i = 0; i < 100; i++) { System.out.println("MyThread " + i); try { Thread.sleep(100); ... 阅读全文
摘要:
public interface A { public void func();}public class B implements A { public B() { // TODO Auto-generated constructor stub } @Override public void func() { // TODO Auto-g... 阅读全文
摘要:
public class A { int i; public A() { // TODO Auto-generated constructor stub } class B { int j; int add() { return i + j; } }}public class Test { ... 阅读全文
摘要:
public interface Person { void introduce();}public class Student implements Person { public Student() { // TODO Auto-generated constructor stub } public void introduce() { Sy... 阅读全文
摘要:
使用try…catchpublic class Test { public Test() { // TODO Auto-generated constructor stub } public static void main(String[] args) { // TODO Auto-generated method stub try {... 阅读全文
摘要:
定义使用interface定义接口当中的方法都是抽象方法接口当中的方法都是public权限实现实现接口使用implements关键字一个类可以实现多个接口一个接口可以继承多个接口一个类可以实现多个接口public interface USB { void read(); void write();}public interface WiFi { void open(); v... 阅读全文
摘要:
public同一个包当中,或者不同包当中的类都可以自由访问private只能在本类中使用default(不写权限修饰符,就是default权限)在同一个包当中可以自由访问包导入import使用其他包中的类的时候,不用再使用全名导入单个类import top.zxc.Test导入整个包中所有类import top.zxc.* 阅读全文
摘要:
防止类重名包名命名规则所有字母小写域名倒过来写一个类的全名“包名”+”.”+”类名”public class Test { public Test() { // TODO Auto-generated constructor stub } public static void main(String[] args) { // TODO Auto-gen... 阅读全文
摘要:
使用abstract定义的类抽象类不能够生成对象如果一个类中包含抽象函数,那么这个类必须被声明为抽象类如果一个类中没有抽象函数,那么这个类也可以被声明为抽象类抽象类天生就是爹抽象函数必须在子类中复写abstract public class Person { String name; int age; Person() { System.out.println("P... 阅读全文