silencereformer 2015-11-22 08:49 采纳率: 50%
浏览 1756
已采纳

C#创建线程调用方法参数出错

我想创建几个线程来熟悉多线程的一些知识于是写了一个小程序

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;

namespace 多线程试验
{
    class Program
    {
        static void Main(string[] args)
        {
            int 线程计数器 = 1;
            函数库 H = new 函数库();
            Thread th1 = new Thread(new ThreadStart(H.显示(线程计数器)));
            线程计数器++;
            Thread th2 = new Thread(new ThreadStart(H.显示(线程计数器)));
            线程计数器++;
            Thread th3 = new Thread(new ThreadStart(H.显示(线程计数器)));
            线程计数器++;

        }
    }
}

上面是主方法,下面是我要用到的方法

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Windows;

namespace 多线程试验
{
    class 函数库
    {
        public void 显示(int i)
        {
            Console.WriteLine("这是第{0}个线程",i);
            Thread.Sleep(2000);
            Console.WriteLine("第{0}个线程结束",i);
        }
    }
}

但是在主函数中直接调用就没问题,但是如果在创建线程的时候作为参数调用方法就会出问题,错误提示是“应输入方法名称”。求各位大神解惑,先谢过!
错误代码是
Thread th1 = new Thread(new ThreadStart(H.显示(线程计数器)));
Thread th2 = new Thread(new ThreadStart(H.显示(线程计数器)));
Thread th3 = new Thread(new ThreadStart(H.显示(线程计数器)));
这三句

  • 写回答

2条回答 默认 最新

  • 微wx笑 Java领域优质创作者 2015-11-22 10:52
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求京东批量付款能替代天诚
  • ¥15 slaris 系统断电后,重新开机后一直自动重启
  • ¥15 51寻迹小车定点寻迹
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含