自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 问答 (1)
  • 收藏
  • 关注

原创 类语句块

public class Snippet extends supperone{ public static void main(String[] args) { new Thread() { { setDaemon(true); } public void run() { System.out.println("acquired"); } }.s...

2014-03-31 15:49:12 167

原创 字符串不同,hashcode可以相同

public class Snippet { public static void main(String[] args) { System.out.println("buzzards".hashCode()); System.out.println("righto".hashCode()); System.out.println("buzzards...

2014-03-31 15:22:40 242

原创 tcl regexp

regexp   regexp  {(?:.*)(?:xx/)(.*?)(/)(.*)} $b all var =============== tst ===============set a {<xxxxx/fadxx/abc/yyyyyyyyyyyyyyy }if [regexp  {(?:.*)(?:ip/)(.*?)(/)(.*)} $b all var] {puts $va...

2014-03-26 16:42:27 577

原创 Thinking in Patterns.pdf

keyword: Thinking in Patterns.pdf  

2014-03-26 15:41:48 354

原创 基本的小程序

斐波那契数列。(Fibonacci) public class Fibonacci { public static int fib(int n) { if(n < 2) return 1; return fib(n-2) + fib(n-1); } public static void main(String[] args) { for(int i...

2014-03-25 14:45:38 111

原创 Eclipse插件开发(第3版)例子

关键字:Eclipse插件开发例子  

2014-03-25 10:50:26 187

原创 Thinking in Java source code and practice

关键字:Thinking in Java source code and practice、Java编程思想源代码(第4版)和习题答案  

2014-03-25 10:49:15 142

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除