using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ConsoleApplication2{/// <summary>/// 我的第一个Thread操作/// </summary>public class Program{//主线程public void Main(){//创建一个线程来执行 Function 函数Thread _trd = new Thread(new ThreadStart(MyClass.Function));//让线程在后台执行//_trd.IsBackground = true;//线程开始时,每1秒执行一次//Thread.Sleep(1000);_trd.Start();//Thread _trd_access = new}}//自己定义的类class MyClass{//自定义一个简单方法public static void Function(){int i = 0;i ++;while (true){System.Console.WriteLine("The Result is :" + i);}}}}
- 2 回答
- 0 关注
- 178 浏览
添加回答
举报
0/150
提交
取消