1 class A{ 2 static int num = 1; 3 public static
void Display(){ 4 System.out.println( num ); 5 } 6 } 7 8 class B extends A{ 9
...
分类:
其他好文 时间:
2014-06-04 22:47:14
阅读次数:
219
Given two integersnandk, return all possible
combinations ofknumbers out of 1 ...n.For example,Ifn= 4 andk= 2, a solution
is:[ [2,4], [3,4], [2,3], [1...
分类:
其他好文 时间:
2014-06-04 20:02:13
阅读次数:
228
场景描述:被测系统是发布在远程服务器上的,假设IP是10.10.10.10,端口是8066,那么访问地址是http://10.10.10.10:8066/,在control机器上我设置了IP欺骗。错误现象:在场景运行时出现大量Action.c(8):
Error -27796: Failed to ...
分类:
其他好文 时间:
2014-06-04 19:04:58
阅读次数:
1295
object fontname = "Wingdings 2"; object uic = true;
doc.Bookmarks.get_Item(ref lblmark).Range.InsertSymbol(-4014, ref fontname, ref
uic, ref missing)....
分类:
其他好文 时间:
2014-06-04 18:53:16
阅读次数:
866
Given a roman numeral, convert it to an
integer.Input is guaranteed to be within the range from 1 to
3999.找到规则即可罗马数字的表示:I~1 V~5 X~10 L~50 C~100 D~500 ...
分类:
其他好文 时间:
2014-06-03 12:09:16
阅读次数:
210
http://jxls.sourceforge.net/ InputStream
templateInput = null; InputStream in = null; OutputStream out = null; try {
templateInput ...
分类:
其他好文 时间:
2014-06-03 09:40:13
阅读次数:
212
List Comprehension1.列表推导 [i for i in range(10) if
i%2 == 0] -> [0, 2, 4, 6, 8], i也可以是一个函数,该风格比C语言思想的代码风格效率高2.enumerate
取到了序列中的序列号好内容forindex,iteminenu...
分类:
编程语言 时间:
2014-06-03 09:08:01
阅读次数:
254
jsp内置对象编辑目录1简介2内置组件?request对象?response对象?session对象?out对象?page对象?application对象?exception对象?pageContext对象?config对象3内置对象产生的时机1简介编辑可以不加声明和创建就可以在JSP页面脚本(Ja...
分类:
Web程序 时间:
2014-05-30 18:05:17
阅读次数:
379
我这个是窃取我们公司同事的劳动成果,分享出来,看谁用到就帮助谁了,嘿嘿!!!一:取出字符串中的汉字(只保留汉字)的正则表达式:
Stringstr="sa汉字e3中国人r#|c";System.out.println(str.replaceAll("[^\u4E00-\u9FA5]",""));二:...
分类:
其他好文 时间:
2014-05-29 19:21:11
阅读次数:
306
一,":substitute"的使用:substitute
命令可以对一个指定范围的区域执行替换操作,可以简写为:s ,它的通用形式如下::[range]substitute/from/to/[flags]
该命令是有[range]指定范围中字符串"from"替换为"to";例如文本的每一行中第一....
分类:
其他好文 时间:
2014-05-29 17:45:18
阅读次数:
255