摘要:
【什么是Java EE】 suite of specifications for APIs, a distributed computing architecture, and definitions for packaging of distributable components for dep 阅读全文
摘要:
【创建线程的方式】 1. 扩展Thread类: Extend class java.lang.Thread and override run(): class Plum extends Thread { public void run() { /* more code */ } } Plum P = 阅读全文