作者:
PsMonkey (痞子軍團團長)
2014-05-08 13:53:36※ 引述《changyuheng (張昱珩)》之銘言:
: 推文卡太久用回文的。
: kobitos 的態度不夠謙和大家有目共睹,之前也有提到,就不贅述。
: 我回的那篇文章雖然是站在 kobitos 的立場,
: 但其實真正想表達意見的地方是看板風氣。
: 提出自己在本板的遭遇,並不是要攻擊板主。
^^^^^^^^^^^^^^^^
: 之前會對於變數命名提問,用提問的方式是為了預留一些轉圜,
: 當時已經看出貼 code 的人對於變數對應的東西不夠瞭解,
: 所以藉由提問,希望能給一些意見。
: 接著不到一天就被鎖文。
我從資源回收筒裡頭挖出來了,以下全文照貼
沒有保留 ANSI 樣式,反正就... 就這樣...
//// ==== 轉貼開始 ==== //
作者 changyuheng (張昱珩) 看板 java
標題 Re: [問題] 新手Thread (執行緒問題)
時間 Fri Nov 23 10:15:53 2012
───────────────────────────────────────
借標題問一下:
※ 引述《TWTRubiks (阿哲)》之銘言:
: // 執行緒類別, 實作Runnable介面
: class UserThread extends UserClass implements Runnable {
Class 的名字取 UserRunnable 會不會比較好?
: }
: public class Ch10_2_1 {
: public static void main(String[] args) {
: UserThread ut1 = new UserThread(5);
: Thread t1 = new Thread(ut1, "執行緒A");
: }
: }