我们假设有方法run1()和run2(),耗时都比较大,实现他们同步运行将大大提高程序的效率,在这里考虑使用多线程的方法。
首先添加引用,定义bool型i,j为false。
class="dp-c" start="1">
- using System.Threading;
在函数入口,比如说start中。
- void start()
- {
-
- Thread thread1 = new Thread(run1);
-
- Thread thread2 = new Thread(run2);
- while (true)
- {
- if (i == true && j == true)
- {
- break;
- }
- else
- {
- Thread.Sleep(10);
- }
- }
- }
在外面定义run1以及run2的方法
public void run1()
- {
-
- i = true;
- }
- public void run2()
- {
-
- j = true;
- }