- 浏览: 20661 次
- 性别:
- 来自: 北京
最新评论
-
jupiterpan:
http://www.cyberciti.biz/tips/l ...
Linux下date命令学习
文章列表
package algorithm;
import java.util.ArrayList;
/**
* @author jupiterpan 2009-12-16
*
*/
public class PlayRoundII {
private ArrayList<Integer>[] array ;
private int count;
private int playerNo;
public PlayRoundII(){
}
public PlayRoundII(int n){
setPlayerNo(n); ...
awk
df
du
csh .cshrc
stty erase ^H
alias setprompt 'set prompt="<:! ${cwd} >"'
setprompt # to set the initial prompt
alias cd 'chdir \!* && setprompt'
- 2009-12-04 18:20
- 浏览 576
- 评论(0)
光标移动命令
b 移动到当前单词的开始
e 移动到当前单词的结尾
w 向后移动一个单词
# 上一个相同单词
* 下一个相同单词
替换字符串:"b,es/from[\[c,C]]/to/g"
这个命令教材大多描述为[1,$s]/[%]..., 需注意其实可以为任意数字
搜索部分要关注大小写问题, 且支持正则表达式
末尾的/g表示处理方式(包括g/强制,p/清单,c/可控:y/n/a/q/1/^E/^Y)
".*[]^%/?~$" 需要用"/"转义;\e:<esc>;\t:<tab>;\r:<cr> ...
Applies to:
Oracle Server - Enterprise Edition - Version: 10.1.0.2.0 to 10.2.0.1.0 Oracle Server - Standard Edition - Version: 10.1.0.2.0 to 10.2.0.1.0 Microsoft Windows 2000 Microsoft Windows XP Microsoft Windows Server 2003 Symptoms
When logged on to the Windows server as a non-Administrator OS ac ...
- 2009-12-03 18:23
- 浏览 834
- 评论(0)
引用原题:有三个线程ID分别是A、B、C,请用多线程编程在屏幕上循环打印10次ABCABC…… 。
package jstyle;
public class TestTread {
private int i,j,count,times;
private Object o = new Object();
public void IdPrint(int t,String...ids){
while(Thread.activeCount()!=1){
try {
Thread.sleep(100);
} catch (Interrupt ...
- 2009-12-03 09:40
- 浏览 1816
- 评论(0)