10 2017 档案
摘要:@echo off:beginchoice /c:1234 /m:"please select"if %errorlevel%==4 goto endif %errorlevel%==3 goto threeif %errorlevel%==2 goto twoif %errorlevel%==1
阅读全文
摘要:package money.thread; import money.Log; public class AddRunner extends ExecutableRunner { private static final String TAG = "AddRunner"; public int a; public AddRunner(Object readyT...
阅读全文
摘要:shell: http://wiki.ubuntu.org.cn/Shell%E7%BC%96%E7%A8%8B%E5%9F%BA%E7%A1%80 java多线程编程 http://download.csdn.net/download/good_654321/9981872
阅读全文
摘要:整数比较 -eq 等于,如:if [ "$a" -eq "$b" ] -ne 不等于,如:if [ "$a" -ne "$b" ] -gt 大于,如:if [ "$a" -gt "$b" ] -ge 大于等于,如:if [ "$a" -ge "$b" ] -lt 小于,如:if [ "$a" -lt
阅读全文