//test.c:#include int main(void){ printf("hello world!"); return 0;}======================================一、1. 编译过程:预处理(processing)-》编译(compilation).....
分类:
数据库 时间:
2014-08-16 02:15:29
阅读次数:
288
目录 如何安装Android SDK、创建开发环境和调试项目 移动设计中一些注意事项 使用Android虚拟设备、模拟器和其他开发工具 如何安装Android SDK、创建开发环境和调试项目 下载和安装Android SDK : 我的是window7系统,当然下载 SDK starter packa...
分类:
移动开发 时间:
2014-08-15 22:27:09
阅读次数:
405
一步步写 CMOS 驱动模块
Let's implement a char driver to access the system CMOS.
首先仅仅是创建设备模块,最简单的,类似于前面hello world模块一样的东东,从最简单的框架慢慢搭
/*************************************************...
分类:
其他好文 时间:
2014-08-15 12:54:54
阅读次数:
302
给自己挖了个坑,一切都得从“HelloWorld”开始。hello.S.data
msg:
.ascii"Hello,World!\n"
len=.-msg
.text
.globl_start
_start:
/*syscallwrite(intfd,constvoid*buf,size_tcount)*/
mov%r0,$1/*fd->stdout*/
ldr%r1,=msg/*buf->msg*/
ldr%r2,=len/*count->le..
分类:
移动开发 时间:
2014-08-15 02:49:58
阅读次数:
235
要想使用QTP进行自动化测试,必须了解VBScript这门语言,对于使用过ASP或VB开发的人来说,VBScript已经再熟悉不过了,但是没有接触过VBScript的同学也不要灰心,因为这门语言简单易学。
1. VBScript利器
2. Hello World
3. 数据类型
4. 变量
5. 常数
6. 运算符
1. VBScript利器
子曰:工欲善其事...
分类:
其他好文 时间:
2014-08-15 00:07:08
阅读次数:
350
10,创建字典字典数组也分不可修改NSDictionary和可修改NSMutableDictionary两种。创建字典如下NSArray *listOfObjects = [NSArray arrayWithObjects:@"Hello World", @"Bonjour tout le? mon...
分类:
其他好文 时间:
2014-08-14 16:01:28
阅读次数:
167
h11 #include 2 int main(void)3 {4 printf("Hello, world!\n");5 return 0;6 }
分类:
其他好文 时间:
2014-08-13 12:29:56
阅读次数:
117
# CGI HTTP server
## Getting Started
Python 2.x is preferred to this simple demo. I'm using Python 2.7 over windows.
* https://docs.python.org/2.7/library/cgihttpserver.html
* https://do...
分类:
编程语言 时间:
2014-08-13 01:09:54
阅读次数:
222
一、pom.xml 依赖项 1 2 net.sf.ehcache 3 ehcache 4 2.8.3 5 6 7 8 org.slf4j 9 ...
分类:
其他好文 时间:
2014-08-13 00:25:15
阅读次数:
527
==============变量类型nilnumber(实数) 1 2 3.14 7.65e8string "hello world" "\n"boolean(true false) true falsefunction*userdata and threadstable(1)默认key初始化t.....
分类:
其他好文 时间:
2014-08-12 18:49:34
阅读次数:
201