码迷,mamicode.com
首页 >  
搜索关键字:threading    ( 3244个结果
.net多线程,线程异步,线程同步,并发问题---1---ShinePans
申请线程,输出线程状态: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace 主线程1 { class Program {...
分类:编程语言   时间:2014-11-20 23:46:39    阅读次数:246
C# 汉字转为拼音
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;using System.Threading;using System.Globali...
分类:Windows程序   时间:2014-11-20 18:31:12    阅读次数:339
DELPHI XE7 新的并行库
DELPHI XE7 的新功能列表里面增加了并行库System.Threading, System.SyncObjs。为什么要增加新的并行库?还是为了跨平台。以前要并行编程只能从TThread类继承进行多线程处理,大家知道TThread类是从WINDOWS的线程API封装起来的,它封装的是WINDO...
分类:Windows程序   时间:2014-11-20 11:32:36    阅读次数:270
WPF小经验
Binding.IsAsync当属性值填充好后,与该属性绑定的界面才会开始加载(属性绑定优于控件加载)private IList _list;public IList List{ get { System.Threading.Thread.Sleep(3000); ...
分类:Windows程序   时间:2014-11-19 21:55:32    阅读次数:266
python3 多线程的基本用法
#coding=utf-8import threading #导入threading包from time import sleepimport timedef task1(): print ("Task 1 executed." )sleep(1)def task2():print ("Task 2...
分类:编程语言   时间:2014-11-19 10:34:31    阅读次数:211
多线程一
using System;using System.Collections.Generic;using System.Linq;using System.Runtime.CompilerServices;using System.Text;using System.Threading;namespa...
分类:编程语言   时间:2014-11-19 00:24:17    阅读次数:244
C#向文件写、读三种方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.IO;namespace FileTest{ ...
分类:Windows程序   时间:2014-11-17 19:18:44    阅读次数:270
QT Demo 之 threading(3) triangle
这一章我们对《QT Demo 之 threading》中的triangle函数实现进行分析和优化。...
分类:其他好文   时间:2014-11-17 14:07:53    阅读次数:172
python3 多线程的基本用法
#coding=utf-8import threading #导入threading包from time import sleepimport timedef task1(): print ("Task 1 executed." )sleep(1)def task2():print ("Task 2...
分类:编程语言   时间:2014-11-17 13:48:38    阅读次数:204
SQLHELPER 帮助类
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 数据库的读取{ using System.Data;...
分类:数据库   时间:2014-11-17 00:30:26    阅读次数:329
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!