开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 413|回复: 4
收起左侧

[已解决] C#线程池求简单例子

 关闭 [复制链接]
结帖率:95% (84/88)
发表于 2023-7-12 11:31:02 | 显示全部楼层 |阅读模式   美国
18精币
本帖最后由 陽陽陽 于 2023-7-13 09:21 编辑

问题:代码不按设想的工作:

易语言代码:
  
窗口程序集名保 留  保 留备 注
窗口程序集_启动窗口   
变量名类 型数组备 注
鱼刺类_线程池EX鱼刺类_线程池Ex  

子程序名返回值类型公开备 注
__启动窗口_创建完毕  
变量名类 型静态数组备 注
n整数型 
鱼刺类_线程池EX.创建 (1, 4, , , )
计次循环首 (10, n)
如果真 (取反 (鱼刺类_线程池EX.投递任务 (&test, n)))
调试输出 (“failed”)

计次循环尾 ()
子程序名返回值类型公开备 注
test  
参数名类 型参考可空数组备 注
n整数型
调试输出 (“entering”, n)
延时 (2000)
调试输出 (“exit”, n)


i支持库列表   支持库注释   
spec特殊功能支持库



但是到了C#,New Bing的代码有有问题了:
[C#] 纯文本查看 复制代码
using System;
using System.Threading;

namespace ThreadPoolExample
{
    class Program
    {
        static void Main(string[] args)
        {
            int maxWorkerThreads, maxCompletionPortThreads;
            ThreadPool.GetMaxThreads(out maxWorkerThreads, out maxCompletionPortThreads);
            ThreadPool.SetMaxThreads(5, maxCompletionPortThreads);

            for (int i = 0; i < 20; i++)
            {
                ThreadPool.QueueUserWorkItem(new WaitCallback(Task), i);
            }

            Console.ReadLine();
        }

        static void Task(object state)
        {
            Console.WriteLine("Task {0} is running on a thread from the thread pool.", state);
            Thread.Sleep(1000);            Console.WriteLine("Task {0} exited.", state);
        }
    }
}



会输出:
Task 18 is running on a thread from the thread pool.
Task 4 is running on a thread from the thread pool.
Task 13 is running on a thread from the thread pool.
Task 19 is running on a thread from the thread pool.
Task 16 is running on a thread from the thread pool.
Task 8 is running on a thread from the thread pool.
Task 1 is running on a thread from the thread pool.
Task 3 is running on a thread from the thread pool.
Task 2 is running on a thread from the thread pool.
Task 9 is running on a thread from the thread pool.
Task 14 is running on a thread from the thread pool.
Task 17 is running on a thread from the thread pool.
Task 0 is running on a thread from the thread pool.
Task 5 is running on a thread from the thread pool.
Task 10 is running on a thread from the thread pool.
Task 11 is running on a thread from the thread pool.
Task 12 is running on a thread from the thread pool.
Task 7 is running on a thread from the thread pool.
Task 6 is running on a thread from the thread pool.
Task 15 is running on a thread from the thread pool.
Task 8 exited.
Task 3 exited.
Task 2 exited.
Task 4 exited.
Task 18 exited.
Task 0 exited.
Task 1 exited.
Task 5 exited.
Task 13 exited.
Task 19 exited.
Task 16 exited.
Task 9 exited.
Task 14 exited.
Task 10 exited.
Task 11 exited.
Task 12 exited.
Task 7 exited.
Task 6 exited.
Task 15 exited.
Task 17 exited.

明明已经达到了最大上限,为什么它还会在那进入线程?

感谢各位大佬的答疑,非常谢谢。

ps:我发帖肯定就是不需要New Bing, ChatGPT那种晦涩难懂,各种专有名词,带有错误的答案(而且我都问过了),我希望我得到的答案是简单易懂的,没有错误的,感谢感谢感谢。



最佳答案

查看完整内容

c#线程池好像已经过时了. 使用task和taskFactory代替了,官方文档说是更安全,更好管理https://learn.microsoft.com/zh-cn/dotnet/api/system.threading.tasks.taskfactory?view=netframework-4.8

求助知识:请将问题描述清楚,最好把你有问题的源码打包上传上来,这样更方便大家帮助你。
友情提醒:本版被采纳的主题可在 申请荣誉值 帖子申请荣誉值,获得 3点 荣誉值,荣誉值可兑换荣誉会员、终身vip用户组。
结帖率:95% (84/88)

签到天数: 3 天

 楼主| 发表于 2023-8-8 23:45:16 | 显示全部楼层   泛播地址
问题解决:线程池线程数不能超过CPU的下限
回复

使用道具 举报

结帖率:100% (5/5)

签到天数: 7 天

发表于 2023-7-12 11:31:03 | 显示全部楼层   湖北省潜江市
c#线程池好像已经过时了. 使用task和taskFactory代替了,官方文档说是更安全,更好管理https://learn.microsoft.com/zh-cn/dotnet/api/system.threading.tasks.taskfactory?view=netframework-4.8
回复

使用道具 举报

结帖率:95% (84/88)

签到天数: 3 天

 楼主| 发表于 2023-7-13 01:55:00 | 显示全部楼层   美国
本帖最后由 陽陽陽 于 2023-7-13 09:20 编辑

真的没人吗
回复

使用道具 举报

结帖率:100% (26/26)
发表于 2023-7-15 18:39:28 | 显示全部楼层   湖北省武汉市
这三行代码应该能解决你的疑惑:
int minWorkerThreads, minCompletionPortThreads;
ThreadPool.GetMinThreads(out minWorkerThreads, out minCompletionPortThreads);
Console.WriteLine("minWorkerThreads:{0}, minCompletionPortThreads:{1}", minWorkerThreads, minCompletionPortThreads);
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表