using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// DataGrid...
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// 列表视图操作类 ...
分类:
其他好文 时间:
2014-05-08 19:30:25
阅读次数:
337
slave的几个类结构: Master_info:用于IO线程的参数,包括连接master实例的信息。
Relay_log_info:用于sql线程,表示relay log相关的信息。
Slave_worker:继承Relay_log_info,包括一个job队列,用于并行的worker线程。...
分类:
数据库 时间:
2014-05-08 19:28:57
阅读次数:
369
环境 windows8, cocos2d-x 3.0, 现在开始安装需要的一些其它包1.
按README.mdown文档上面要求的, 下载在windows下要安装的东东,
主要就是python2.7.3,PyYAML-3.10.win32-py2.7,pyCheetah 这些东东在README.md...
分类:
其他好文 时间:
2014-05-08 19:26:35
阅读次数:
494
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// TextBox控...
分类:
其他好文 时间:
2014-05-08 19:15:06
阅读次数:
293
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// 复选框操作类 ...
分类:
其他好文 时间:
2014-05-07 20:22:28
阅读次数:
345
在Java中,线程有两种实现方式:1、继承Thread类 代表一个线程 ;2、实现Runable接口,代表一个线程体。
在Android当中也是如此。Android中的线程有两种。1、MainThread 主线程又叫UI线程;2、WorkerThread 即除主线程以外的其他线程。
若想利用线程对UI进行控制的话,一般只能通过UI线程,即MainThread(ProgressBar除外),...
分类:
编程语言 时间:
2014-05-07 16:17:00
阅读次数:
424
基于rabbitmq消息队列中topic消息交换模式,弥补了direct exchange和fanout exchange的不足,增加了其灵活性。...
分类:
其他好文 时间:
2014-05-07 16:03:22
阅读次数:
494
ExecutorService:
它也是一个接口,它扩展自Executor接口,Executor接口更像一个抽象的命令模式,仅有一个方法:execute(runnable);Executor接口简单,但是很重要,重要在这种设计的模式上。。Java5以后,通过Executor来启动线程比用Thread的start()更好。在新特征中,可以很容易控制线程的启动、执行和关闭过程,还可以很容易使用线...
分类:
移动开发 时间:
2014-05-07 15:43:59
阅读次数:
438