c#写一个程序,创建3个线程,这三个线程分别输出A B C,每个程序输出10遍,但必须按照ABCA 70

c#写一个程序,创建3个线程,这三个线程分别输出ABC,每个程序输出10遍,但必须按照ABCABC......这样的格式10遍。PS:要c#版本的,别弄个c++的或jav... c#写一个程序,创建3个线程,这三个线程分别输出A B C,每个程序输出10遍,但必须按照ABCABC......这样的格式10遍。
PS:要c#版本的,别弄个c++的或java的弄过来。
展开
 我来答
steven0320
2015-10-18 · 超过55用户采纳过TA的回答
知道小有建树答主
回答量:114
采纳率:100%
帮助的人:81.6万
展开全部
        static void Main(string[] args)
        {
            Thread[] threads=new Thread[3];

            for (int i = 0; i < 3; i++)
            {
                threads[i]=new Thread(Test);
                threads[i].IsBackground = true;
                threads[i].Start();
            }

            Console.ReadLine();
        }

        static void Test()
        {
            for (int i = 0; i < 10; i++)
            {
                Console.Write("ABC");
            }
        }
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
内裤最大功能
2015-10-18 · TA获得超过3106个赞
知道大有可为答主
回答量:3202
采纳率:79%
帮助的人:492万
展开全部
        public static void A()
        {
            for (int i = 0; i < 10; i++)
            {
                Console.WriteLine("A");
            }           
        }
        public static void B()
        {
            for (int i = 0; i < 10; i++)
            {
                Console.WriteLine("B");
            } 
        }
        public static void C()
        {
            for (int i = 0; i < 10; i++)
            {
                Console.WriteLine("C");
            } 
        }
        static void Main(string[] args)
        {
            Thread t1 = new Thread(new ThreadStart(A));//线程要执行的函数
            Thread t2 = new Thread(new ThreadStart(B));
            Thread t3 = new Thread(new ThreadStart(C));
            t1.Start();//开启线程。
            t2.Start();
            t3.Start();
            Console.Read();
         }
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式