模板文件 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:orientation="vertica...
分类:
移动开发 时间:
2015-06-05 08:52:06
阅读次数:
173
相关出处请查看:http://www.cnblogs.com/stephen-liu74/archive/2011/11/01/2202027.html零、shell中的内部变量:1. $?: 表示shell命令的返回值.2. $$: 表示当前shell的pid.3. $!: 最后一个放入后台作业的...
分类:
系统相关 时间:
2015-05-27 15:20:22
阅读次数:
216
1. 基础面向对象实例function Lecture(name, teacher) { this.name = name; this.teacher = teacher;}Lecture.prototype.display = function () { return this.teache...
分类:
Web程序 时间:
2015-05-21 08:54:50
阅读次数:
155
面向对象编程
var person = {};//或者这样:var person = new Object();
person.name = "张三";
person.age = 20;
//函数充当属性,属性变方法了!
person.info = function() {
alert...
分类:
编程语言 时间:
2015-05-09 22:09:54
阅读次数:
113
shell编程:
bash变量类型:
环境变量
本地变量(局部变量)
位置变量
特殊变量(内置)
本地变量:
varname=value:作用域为整个bash进程可以使用;
变量命名规范:
1. 只能含字母、数字和下划线,并且以字母和下划线开头
2. 最好不要跟系...
分类:
系统相关 时间:
2015-04-28 18:29:52
阅读次数:
167
storysnail的Linux串口编程笔记 作者 He YiJun – storysnailgmail.com 团队 ls 版权 转载请保留本声明! 本文档包含的原创代码根据General Public ...
分类:
系统相关 时间:
2015-04-11 17:42:34
阅读次数:
184
storysnail的Windows串口编程笔记 作者 He YiJun – storysnailgmail.com 团队 ls 版权 转载请保留本声明! 本文档包含的原创代码根据General Publi...
1. pthread_create(pthread类型指针变量 ,NULL ,函数 ,函数参数[多个参数用结构体传])2. pthread_join(pthread类型指针变量, 返回一般为null) pthread_join的作用: pthread_join()函数,以阻塞的方式等待threa.....
分类:
编程语言 时间:
2015-04-08 12:23:15
阅读次数:
151