自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 问答 (2)
  • 收藏
  • 关注

原创 javascript 内部对象

Object String Math Date Array Array:数组对象 Boolean BOOL型对象 Date:日期型对象 Function:函数型对象 Global:全局对象 Math:数学对象 Number:数值常数 Object:通用对象 RegExp:正则表达式 Error :错误对象...

2010-03-03 22:31:36 131

原创 java array list exception

array to list [code="java"] List list = Arrays.asList(array); [/code] decouple try catch and try finally [code="java"] try{ try{ //code } finally{ //code } catch(Excepti...

2009-12-22 16:41:03 117

原创 vim tip

[code="vim"] `. move to the last edit. # :%s/text/replacement text/g search through the entire document for text and replace it with replacement text. # :%s/text/replacement text/gc search thro...

2009-11-25 15:54:33 95

原创 java null cast

摘自 Java Language Specification The null reference can always be cast to any reference type.In practice, the programmer can ignore the null type and just pretend that null is merely a special literal...

2009-11-11 17:53:28 259

原创 java 访问修饰符

public > protected > package >private [code="sh"] Access Levels Modifier Class Package Subclass World public Y Y Y Y protected Y Y Y N no modifier Y Y ...

2009-11-09 16:20:43 74

javascript varibale 摘要

先占个位置

2009-11-05 15:52:21 69

jquery get filed value

[code="js"] var newEmail = $("input[@name=" + UIEntity.name + "newEmail]").val(); var newEmailVerify = $("input[@name=" + UIEntity.name + "newEmailVerify]").val(); [/code]

2009-11-05 15:49:24 83

javascript var 与 非

[code="js"] var t = true; var f = false; var a = t && null; var b = f && null; var c = null && t; var d = null && f; ...

2009-11-04 18:21:01 95

java constructor 在构造子类时,一定会调用到父类的构造方法

sub class must call base class's constructor sub class will invoke base class's constructor implicityly if super constructor is undefined, must explicitly invoke another constructor 子类以一...

2009-10-22 17:02:59 468

Tips

一位前辈经验 --有目的的学习,学以致用,将来必有更好的发展。 learning spoken English from a classmate --speak following recordings and see English TV Show in spare time. 学习新东西 --先看中文入门 --动手, 一个大的相关练习 --对相应重要的东西查找英文资料准确...

2009-10-19 11:43:44 86

奇怪的 throws exception

org.springframework.mail.MailSender [code="java"] void send(SimpleMailMessage simpleMessage) throws MailException; [/code] [code="java"] private static JavaMailSender mailSender = null; mai...

2009-10-15 12:35:16 194

空空如也

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

TA关注的人

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