c# 线程同步 效率太低 求大神赐教

发布于 2021-11-27 11:13:25 字数 820 浏览 734 评论 3

不加锁 速度到是快 但是重复了  加了锁 不重复了 但是好慢啊
private void _SiteVerify()
        {
            lock (obj)
            {
                while (siteListIndex < siteList.Count)
                {
                    Post(siteList[siteListIndex], param);

                    BeginInvoke(delegateLabel7, new object[] { siteList.Count + "/" + (siteListIndex + 1) });
                    BeginInvoke(delegateListView2Item, new object[] { siteListIndex });

                    siteListIndex++;
                }
            }

            int threadID = int.Parse(Thread.CurrentThread.Name.Replace("SiteVerifyThread", "").Trim());
            siteManuas[threadID].Set();
        }



如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

凌乱心跳 2021-11-29 19:43:06

为了unity,又不得不再学一门语言....

悸初 2021-11-29 17:54:57

我用的.net2.0没有这个。。

梦里兽 2021-11-29 16:32:47

试试System.Collections.Concurrent命名空间里面的线程安全集合

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文