- 浏览: 3081 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
文章列表
JS典型闭包形式:
function a(){
var i = 1;
function b(){
return ++i;
}
return b;
}
alert(a()());
要理解闭包,JS函数的作用域、作用域链等,注意下边两段代码的异同。
代码一:
var s = "hello window";
var o = {
s:"hello object",
f:function(){
function c(){
return this.s;
}
return c;
}
}
alert ...
假设脚本存为launch.sh,端口为8080
#!/bin/sh
if [ $# -le 0 ];then
echo 'eg:./launch.sh 8080'
exit 0
fi
path=$(pwd)
port=$1
num=100
while [ $num -gt 0 ]
do
echo $num
ps ax|grep $port|grep -v grep|grep -v ${0}|awk '{print $1}' -> tmp.txt
for pid in $(cat ...