http://www.sufeinet.com/plugin.php?id=keke_group

苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

分布式系统框架(V2.0) 轻松承载百亿数据,千万流量!讨论专区 - 源码下载 - 官方教程

HttpHelper爬虫框架(V2.7-含.netcore) HttpHelper官方出品,爬虫框架讨论区 - 源码下载 - 在线测试和代码生成

HttpHelper爬虫类(V2.0) 开源的爬虫类,支持多种模式和属性 源码 - 代码生成器 - 讨论区 - 教程- 例子

查看: 3085|回复: 3

[其他] 求助飞神帮看下代码,多线程卡死的问题

[复制链接]
发表于 2014-3-9 12:11:27 | 显示全部楼层 |阅读模式
timestatus 是一个标签显示倒计时的.
test2 是一个文本框 显示测试数字的.

这样子完全跑不起来,运行会卡死.
去掉 Thread.Sleep(1000); 后能跑,但是跑2秒左右就会变成一直显示99999 好像是变成最后一个建立的线程在跑 其它的都没了.
本人新手,飞哥能帮看下吗?

[C#] 纯文本查看 复制代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.IO;
using System.Threading;
using System.Diagnostics;
using System.Text.RegularExpressions;

namespace test
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        System.Threading.Timer threadTimer;
        delegate void qianggou(int id);

        public void ThreadMethod(Object state)
        {
            this.Invoke(new qianggou(jdordertotal), state);
        }

        private void qiang_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < 10; i++)
            {
                threadTimer = new System.Threading.Timer(new System.Threading.TimerCallback(ThreadMethod), i, 0, 100);
                Thread.Sleep(100);
            }
        }

        public void jdordertotal(int id)
        {
            TimeSpan ts = Convert.ToDateTime("2014-3-9 11:47:00") - DateTime.Now;
            double zms = ts.TotalMilliseconds;
            double zs = ts.TotalMilliseconds / 1000;
            string tt = zs.ToString("0.0");
            timestatus.Text = tt;
            
            
            if (zs < 60)
            {
                testbig(id);
            }
        }

        public void testbig(int id)
        {
            

                test2.Text = test2.Text + id.ToString();
                Thread.Sleep(1000);
            }
        

        private void Form1_Load(object sender, EventArgs e)
        {

        }
          

    }
}



1. 开通SVIP会员,免费下载本站所有源码,不限次数据,不限时间
2. 加官方QQ群,加官方微信群获取更多资源和帮助
3. 找站长苏飞做网站、商城、CRM、小程序、App、爬虫相关、项目外包等点这里
 楼主| 发表于 2014-3-9 17:22:25 | 显示全部楼层
改了一下代码,过二秒后只有一个线程的问题解决了,是实例化错了的事.现在还是执行长时间的会卡死..
[C#] 纯文本查看 复制代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.IO;
using System.Threading;
using System.Diagnostics;
using System.Text.RegularExpressions;

namespace test
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        delegate void qianggou(int id);
        System.Threading.Timer[] threadTimer=new System.Threading.Timer[10];
        bool[] temp = new bool[] { false, false, false, false, false, false, false, false, false, false};

        public void ThreadMethod(Object state)
        {
            this.Invoke(new qianggou(jdordertotal), state);
        }

        private void qiang_Click(object sender, EventArgs e)
        {
            for(int i=0;i<10;i++)
            {
                threadTimer[i] = new System.Threading.Timer(new System.Threading.TimerCallback(ThreadMethod), i, 0, 1000);
                Thread.Sleep(100);
            }
            
        }

        public void jdordertotal(int id)
        {
            TimeSpan ts = Convert.ToDateTime("2014-3-9 13:35:00") - DateTime.Now;
            double zms = ts.TotalMilliseconds;
            double zs = ts.TotalMilliseconds / 1000;
            string tt = zs.ToString("0.0");
            timestatus.Text = tt;
            
            
            if (zs < 60)
            {
                testbig(id);
            }
        }

        public void testbig(int id)
        {

            //threadTimer[id].Change(-1,-1);
                test2.Text = id.ToString();
                //Thread.Sleep(1000);
                //threadTimer[id].Change(0, 5000);
            }
        

        private void Form1_Load(object sender, EventArgs e)
        {

        }
          

    }
}
发表于 2014-3-11 12:40:37 | 显示全部楼层
仔细研究下  站长的http://www.sufeinet.com/forum.ph ... p;tid=13&ctid=5

对于多线程学习很有帮助
 楼主| 发表于 2014-3-12 17:10:28 | 显示全部楼层
970443232 发表于 2014-3-11 12:40
仔细研究下  站长的http://www.sufeinet.com/forum.php?mod=viewthread&tid=13&ctid=5

对于多线程学习很 ...

好的 谢 谢....
您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

QQ|手机版|小黑屋|手机版|联系我们|关于我们|广告合作|苏飞论坛 ( 豫ICP备18043678号-2)

GMT+8, 2024-11-24 01:40

© 2014-2021

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