case 表达式 when case1 then value1,case 2 then
value2,...else endcase 1 when 2 then 3 when 1 then 4 else 5
end如果要再这个基础上加条件的话,只能在他外面嵌套一个case了应为这个case的表达式已...
分类:
其他好文 时间:
2014-06-13 07:01:31
阅读次数:
280
b1=b2=""b3="hello"if [[ -n "${b3}" ]]then echo "not
null"else echo "null"fib1 nullb2 nullb3 not null-n str 字符串长度非零
分类:
其他好文 时间:
2014-06-13 00:15:10
阅读次数:
241
1 var t; 2 function showportal() { 3 if
($("#图片ID").is(":hidden")) 4 $("#图片ID").show(); 5 else 6 ...
分类:
Web程序 时间:
2014-06-12 18:59:32
阅读次数:
264
Bootstrap 101 Template Toggle navigation Brand
Link Link Dropdown Action Another action Something else here Separated link One
more separated link Sub...
分类:
其他好文 时间:
2014-06-12 18:58:06
阅读次数:
398
是什么一种scheme,用表来做信息存取,代替逻辑语句(if/else)为什么简化逻辑语句,避免大量嵌套的 if/else 或者
switch/case怎么用三种访问表的方式直接访问:将源数据作为key索引访问:构建KV表阶梯访问:分为连续区间,遍历或者二分查找例子// get the
full n...
分类:
其他好文 时间:
2014-06-12 11:54:23
阅读次数:
255
问题:采用递归方法计算给定整型数组元素之和。 以下给出几种递归算法的实现: 1 int
sum1(int a[], int n) 2 { 3 if(n > 0) 4 return a[n-1] + sum1(a, n-1); 5 else 6
r...
分类:
其他好文 时间:
2014-06-12 08:15:49
阅读次数:
291