摘要:
package com.exception.demo02; public class Test { // 可能会存在异常的方法 static void test(int a) throws MyException{ System.out.println("传递的参数为:"+a); if (a>10) 阅读全文
摘要:
package com.oop.demo08; // static public class Student { private static int age; //静态变量 多线程! private double score; //非静态变量 public void run(){ } public 阅读全文