2014 - 5 - 22
上午Java对大小写敏感.点号(.)用于调用方法,Java的能用语法是:object.method(parameters);Java中的常量声明使用final关键字.且仅能赋值一次.习惯上,常量名大写.可使用static
final 定义一个类常量,以便在一个类中的多个方...
分类:
编程语言 时间:
2014-05-26 22:17:43
阅读次数:
385
spring容器对bean的生命周期管理主要在两个时间点:bean的初始化完成(包括属性值被完全注入),bean的销毁(程序结束,或者引用结束)方式一:使用springXML配置中的init-method="init"
destroy-method="destory" 这个两个配置,可以实现两个时间...
分类:
编程语言 时间:
2014-05-26 21:58:23
阅读次数:
315
在软件系统中,经常面临着“某个对象”的创建工作,由于需求的变化,这个对象的具体实现经常面临着剧烈的变化,但是它却拥有比较稳定的接口。如何应对这种变化?提供一种封装机制来隔离出“这个易变对象”的变化,从而保持系统中“其它依赖该对象的对象”不随着需求的改变而改变?这就是要说的Factory
Method...
分类:
其他好文 时间:
2014-05-26 21:10:26
阅读次数:
269
在《Pragmatic Ajax A Web 2.0 Primer
》中对readyStae状态的介绍,摘译如下:0: (Uninitialized) the send( ) method has not yet been
invoked.1: (Loading) the send( ) metho...
分类:
其他好文 时间:
2014-05-26 20:46:09
阅读次数:
293
报错:Access restriction: The method
decodeBuffer(String) from the type CharacterDecoder is not accessible due to
restriction on required libraryAccess r...
分类:
数据库 时间:
2014-05-26 07:30:24
阅读次数:
279
code如下:
//Longest common sequence, dynamic programming method
void FindLCS(char *str1, char *str2)
{
if(str1 == NULL || str2 == NULL)
return;
int length1 = strlen(str1)+1;
int length2 = strlen(...
分类:
其他好文 时间:
2014-05-26 04:56:50
阅读次数:
215
public void doSave(IProgressMonitor monitor) { //
TODO Auto-generated method stub performSave(monitor, getEditorInput());
getCommandStack()...
分类:
编程语言 时间:
2014-05-24 10:30:59
阅读次数:
365
如果可变字符串操作较多的话,用STRINGBUILDER显然优势得多。public class
HelloJava { public static void main(String[] args) { // TODO Auto-generated
method stub ...
分类:
编程语言 时间:
2014-05-24 09:00:10
阅读次数:
328
本文主要介绍如何使用静态工厂方法已经在那种场合来使用这种方式代替构造方法。
众所周知,对于类而言,我们为了获得一个类的实例对象,通常情况下会提供一个公有的(public) 的构造器。当然除了这种方法以外,我们还可以通过给类提供一个public的静态工厂方法(static factory method)的方式来完成,让它返回一个类的实例。...
分类:
编程语言 时间:
2014-05-23 01:03:20
阅读次数:
317
Direct request is the simplest method used to request a semaphore. The request behaves as an atomic read and set operation. The result of a request is either to grant the semaphore
to the requesting...
分类:
其他好文 时间:
2014-05-22 17:21:38
阅读次数:
517