package test;public class Test implements
Runnable{ public static int j =0; @Override public void run() { synchronized
(this) { ...
分类:
编程语言 时间:
2014-05-17 00:21:52
阅读次数:
351
class Rational(n: Int, d: Int) { require(d != 0)
override def toString = n +"/"+ d}The require method takes one boolean
parameter. If the passed val.....
分类:
其他好文 时间:
2014-05-16 09:01:12
阅读次数:
272
工厂方法(Factory
Method)模式的意义是定义一个创建产品对象的工厂接口,将实际创建工作推迟到子类当中。核心工厂类不再负责产品的创建,这样核心类成为一个抽象工厂角色,仅负责具体工厂子类必须实现的接口,这样进一步抽象化的好处是使得工厂方法模式可以使系统在不修改具体工厂角色的情况下引进新的产品...
分类:
其他好文 时间:
2014-05-16 06:55:08
阅读次数:
205
Java动态代理类位于Java.lang.reflect包下,一般主要涉及到以下两个类: (1).
Interface InvocationHandler:该接口中仅定义了一个方法Object:invoke(Object obj,Method method,
J2EEjava语言JDK1.4APIj...
分类:
编程语言 时间:
2014-05-14 08:39:57
阅读次数:
263
I think the official documentation gives you
the answer to this one (albeit in a fairly nonspecific way):This method is the
dynamic equivalent of the ...
分类:
其他好文 时间:
2014-05-14 03:31:06
阅读次数:
223
Javascript 面向对象编程(一):封装
作者:阮一峰
Javascript是一种基于对象(object-based)的语言,你遇到的所有东西几乎都是对象。但是,它又不是一种真正的面向对象编程(OOP)语言,因为它的语法中没有class(类)。
那么,如果我们要把"属性"(property)和"方法"(method),封装成一个对象,甚至要从原型对象生成一个实例对象,我们应该怎么做呢?...
分类:
编程语言 时间:
2014-05-13 16:29:59
阅读次数:
279
JavaScript实现弹窗报错
1、具体错误如下
SCRIPT 5022:cannot call methods on dialog prior to initialization;
attempted to call method 'open'.
2、错误原因
3、解决办法...
分类:
编程语言 时间:
2014-05-13 07:01:27
阅读次数:
463
1.doGet和doPost的区别,在什么时候调用,为什么有时doPost中套用doGet2.提交的formmethod=Post就执行DOPOST,否则执行GOGET
套用是不管method是post还是get都执行dopost方法3.get:你可以通过URL传参数。http://www.csdn...
分类:
其他好文 时间:
2014-05-12 20:42:32
阅读次数:
323
public class ThreadTest implements Callable {
public String call() throws Exception {
// TODO Auto-generated method stub
wait(10000);
return "hello";
}
}调用代码:
public static void main(Stri...
分类:
编程语言 时间:
2014-05-11 21:27:24
阅读次数:
533
package com.ctl.util;
import java.io.IOException;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.sql.Connection;
impo...
分类:
数据库 时间:
2014-05-11 21:04:49
阅读次数:
501