摘要:
1. 繼承Thread類 public class MyThread extends Thread { @Override public void run() { System.out.println("這是一個新的線程"); } } public class ThreadTest { public 閱讀全文
摘要:
一. 基本的異常打印 public class Test { public static void main(String[] args) { fun1();//第4行 } public static void fun1() { fun2();//第8行 } public static void f 閱讀全文