摘要:
package com.oop.Static; //静态导入包~ 很少用 import static java.lang.Math.random; import static java.lang.Math.PI; public class Application { public static vo 阅读全文
摘要:
package com.oop.Polymorphism;public class Person { public void run(){ System.out.println("father"); } public void sing(){ System.out.println("father1" 阅读全文