1.Process概念进程就是正在执行的应用程序实例。包括了(1)正在运行的应用程序代码,(2)相关的应用程序数据(3)和执行程序所需要的资源,(4)该进程的一些状态标识2.进程描述操作系统会采用一些数据结构来描述和维护进程。在linux中,称为ProcessDescriptor,定义为task_s... Read More
posted @ 2015-09-10 08:26 ThomasLiao Views(252) Comments(0) Diggs(0)
introduction to the Linux kernel1.operating system1) considered the parts of the system2) responsible for basic use and administration.3) includes the... Read More
posted @ 2015-09-07 23:04 ThomasLiao Views(142) Comments(0) Diggs(0)
版本时间0.12015_09_07------------------------------------------------------why----------------------------------------------------------------------------... Read More
posted @ 2015-09-07 22:20 ThomasLiao Views(147) Comments(0) Diggs(0)
最近做项目需要动态创建单选多选框。大体思路就是:1.动态创建一个RadioGroup.2.动态创建RadioButton,并且添加到RadioGroup中去。如果是自己继承RadioButton,和RadioGroup去实现其他各种各样的话,一不小心就会遇到各种各样的病。(啊啊啊啊,RadioGro... Read More
posted @ 2015-06-25 19:20 ThomasLiao Views(1199) Comments(0) Diggs(0)
EFL - 1.7.1Void指针 void *则为“无类型指针”,可以指向任何数据类型 void指针不能复引用,因为void指针只知道,指向变量/对象的起始地址 –*vp//错误 void指针不能参与指针运算,除非进行转换 有时候由于重载等的干扰,导致需要转换成void *,来进行取地址 –例如,... Read More
posted @ 2015-04-27 16:16 ThomasLiao Views(471) Comments(2) Diggs(1)