1、变量和常量:全局变量用$; 实例变量用@; 类变量用@@;Local Variable: name fish_and_chips x_axis thx1138 _x _26Instance Variable: @name @point_1 @X @_ @plan9Class Variable.....
分类:
其他好文 时间:
2014-06-18 17:13:55
阅读次数:
245
多线程数据同步错误比较难检测,因为通常是与事件的特定发生顺序有关。
一、同步术语
Barrier(屏障)
barrier是多个Thread的集合点:所有的Thread都应该到齐在这个barrier之后才能允许它们继续下去。
Condition variable(条件变量)
实际上不是变量,而是与某个lock有关联的变量。
Event variable(事件变...
分类:
编程语言 时间:
2014-06-18 06:23:12
阅读次数:
356
shell脚本编程之循环控制结构
循环控制之for循环
语法结构1
for Variable in List
do
commands
done
语法结构2
for Variable in List;do
commands
...
分类:
其他好文 时间:
2014-06-16 19:49:18
阅读次数:
218
& produces the address of its operand. For example,the following statements an integer variable 'a' and apointer to an integer variable 'p' are dec...
分类:
其他好文 时间:
2014-06-15 20:41:58
阅读次数:
155
第三方包引入时,eclipse默认会把一些包定为错误的,错误是:“undefined variable from import...” 其实是对的,可是报错,很烦人解决方法:window -- preferences -- pydev -- editor -- code analysis -- Un...
分类:
其他好文 时间:
2014-06-15 18:40:06
阅读次数:
175
【python】UnboundLocalError: local variable 'counter' referenced before assignment...
分类:
编程语言 时间:
2014-06-15 16:15:26
阅读次数:
515
C语言中,一个函数是不能直接返回一个集合类型的,但是我们可以返回一个数组地址,需要注意的是C语言不能返回局部变量(local variable)的地址,所以我们要在函数中将其定义为静态变量(static variable)。#includeint *get_arr();int main(){ ...
分类:
其他好文 时间:
2014-06-15 09:41:48
阅读次数:
171
Environment variable: "PATH" - This test checks
whether the length of the environment variable "PATH" does not exceed the
recommended length.预期值:1023实...
分类:
数据库 时间:
2014-06-12 17:25:20
阅读次数:
633
原文地址:http://elinux.org/Debugging_by_printing#Usage
If variable is of Type, use printk format
specifier:----------------------------------------------....
分类:
其他好文 时间:
2014-06-12 08:17:15
阅读次数:
297