執行緒呼叫帶引數的方法:有兩種方式:
1、使用委託:
static void main(string args)
));thread thread2 = new thread(new threadstart(method2));
thread1.isbackground = true;
thread1.start();
thread2.start();
console.readkey();
}/*執行緒學習所用方法*/
public static void method1(string s)
public static void method2()
/*執行緒學習所用方法 */
2、使用obj型別引數的方法,見method1,引數型別火object
static void main(string args)
/*執行緒學習所用方法*/
public static void method1(object s)
public static void method2()
/*執行緒學習所用方法 */
快捷鍵:在波浪線的名字上,shift+alt+f10,可以引入命名空間: c 多執行緒 呼叫帶引數函式
執行緒操作主要用到thread類,他是定義在system.threading.dll下。使用時需要新增這乙個引用。該類提供給我們四個過載的建構函式 以下引自msdn thread threadstart 初始化 thread 類的新例項。由 net compact framework 支援。thre...
c 多執行緒 呼叫帶引數函式
執行緒操作主要用到thread類,他是定義在system.threading.dll下。使用時需要新增這乙個引用。該類提供給我們四個過載的建構函式 以下引自msdn thread threadstart 初始化 thread 類的新例項。由 net compact framework 支援。thre...
c 多執行緒呼叫有引數的方法
一 不帶引數的 using system using system.collections.generic using system.text using system.threading namespace aaaaaa private static void a 結果顯示method a 二 帶...