为啥图形窗口接口要称为 X 呢?因为就英文字母来看 X 是在W(indow)
后面,因此,人们就戏称这一版的窗口接口为 X ,有下一版新窗口之意X系统由3个相关的部分组合起来的。 服务端(Server)
Server是控制显示器和输入设备(键盘和鼠标)等硬件的软件。它负责检测具体那个设备有什么...
总结以下三种方法,实现c#每隔一段时间执行代码:方法一:调用线程执行方法,在方法中实现死循环,每个循环Sleep设定时间;方法二:使用System.Timers.Timer类;方法三:使用System.Threading.Timer;123456789101112131415161718192021...
分类:
编程语言 时间:
2014-05-23 11:10:18
阅读次数:
379
using System;using
System.Collections.Generic;using System.IO;using System.Linq;using
System.Reflection;using System.Runtime.InteropServices;namespace...
分类:
其他好文 时间:
2014-05-23 10:59:24
阅读次数:
223
此例子中传递的变量有string type,string
text,储存在结构数组中;static int
i储存在Sta类中(如果在外面声明,调用它老出错),里面有geti和seti函数来操纵它。各个窗体实现功能及截图:各窗体代码如下:using
System;using System.Colle...
参考资料《大话设计模式》Mediator(中介者)模式:使各个对象不需要显式的相互调用,从而使其耦合松散。using System;using
System.Collections.Generic;using System.Linq;using System.Text;namespace
ds_me...
分类:
其他好文 时间:
2014-05-23 10:13:17
阅读次数:
331
参考资料《大话设计模式》职责链模式:using System;using
System.Collections.Generic;using System.Linq;using System.Text;namespace
ds_chainofresponsibility{ class Progr...
分类:
其他好文 时间:
2014-05-20 12:52:03
阅读次数:
328
1. 进程是unix系统中两个最重要的基础抽象之一(另一个是文件)A process is a
running programA thread is the unit of activity inside of a processthe
virtualization of memory is ass...
分类:
系统相关 时间:
2014-05-20 12:33:05
阅读次数:
407
本例采用jsoncpp-src-0.6.0-rc2-amalgamation.tarjava调用语句
int id = 1001; String name = "Kevin"; String result = system.toBuildJson(id,
name); Log.i(TAG,St...
分类:
Web程序 时间:
2014-05-20 12:29:01
阅读次数:
387
一:上图,不清楚的看代码注解,很详细了二:具体代码窗体代码using System;using
System.Collections.Generic;using System.ComponentModel;using System.Data;using
System.Drawing;using Sy...
/* 先定义一个Node类用来存储节点的值域和指针域 * 即当前节点中的值和后面节点的方法 *
在C中就是相当与定义一个结构体类型一个数据域和指针域的方法 */class LNode{//这个写法已经非常固定了
设置两个属性分别用set函数和get函数来得到这两个属性 private int da....
分类:
编程语言 时间:
2014-05-20 11:14:55
阅读次数:
316