C#实现计算数据和刷新ListView列表并发执行

下面是一个示例代码,演示如何在C#中实现计算列表的数据和刷新ListView控件的数据的并发执行:

cs 复制代码
using System;
using System.Collections.Generic;
using System.Threading;
using System.Windows.Forms;

class Program
{
    static List<int> dataList = new List<int>();
    static ListView listView = new ListView() { View = View.Details };

    static void Main()
    {
        // 添加列头
        listView.Columns.Add("Data");

        // 启动两个线程并发执行计算和刷新列表的操作
        Thread computeThread = new Thread(() => ComputeData(10, 20));
        computeThread.Start();

        Thread refreshThread = new Thread(() => RefreshListView());
        refreshThread.Start();

        Application.Run(new Form() { Controls = { listView } });
    }

    static void ComputeData(int a, int b)
    {
        int sum = a + b;
        Console.WriteLine($"Sum of {a} and {b} is {sum}");

        lock (dataList)
        {
            dataList.Add(sum);
        }
    }

    static void RefreshListView()
    {
        while (true)
        {
            Thread.Sleep(1000);

            lock (dataList)
            {
                listView.Items.Clear();
                foreach (var data in dataList)
                {
                    listView.Items.Add(new ListViewItem(data.ToString()));
                }
            }
        }
    }
}

在这个示例中,我们创建了一个ListView控件用来显示数据。然后启动了两个线程,一个用来计算数据并添加到列表中,另一个用来刷新ListView控件的数据。在计算数据时我们使用了lock保护dataList,确保数据的线程安全性。在刷新ListView时也同样使用了lock来避免多线程访问导致的并发问题。

请注意,这个示例中使用了Thread.Sleep(1000);来模拟每隔一秒刷新一次ListView的操作。在实际应用中,您可以根据具体需求来调整刷新频率。此外,为了在Windows窗体应用程序中运行,我们使用了Application.Run方法启动了主窗体。

相关推荐
头发还在的女程序员几秒前
三天搞定招聘系统!附完整源码
开发语言·python
温轻舟6 分钟前
Python自动办公工具06-设置Word文档中表格的格式
开发语言·python·word·自动化工具·温轻舟
p***c9497 分钟前
PHP在电商中的电商系统
开发语言·php
Z***258014 分钟前
JavaScript在Node.js中的Deno
开发语言·javascript·node.js
a***56061 小时前
Windows上安装Go并配置环境变量(图文步骤)
开发语言·windows·golang
San30.1 小时前
ES6+ 新特性解析:让 JavaScript 开发更优雅高效
开发语言·javascript·es6
烤麻辣烫1 小时前
黑马程序员苍穹外卖(新手)DAY6
java·开发语言·学习·spring·intellij-idea
友友马2 小时前
『QT』窗口 (一)
开发语言·数据库·qt
APIshop2 小时前
Python 零基础写爬虫:一步步抓取商品详情(超细详解)
开发语言·爬虫·python
AI科技星2 小时前
为什么宇宙无限大?
开发语言·数据结构·经验分享·线性代数·算法