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
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
使用emacs的用户都知道,一般要打开远程机器上的文件要使用TrampMode模式,调用方式如下:
C-x C-f /remotehost:filename RET (or /method:user@remotehost:filename)
但,这样打开有点麻烦,你必要输入用户名和机器ip等
emacs提供了一种client/server的模式,当我们在本地打开一个emacs,可以将它作...
分类:
其他好文 时间:
2014-05-11 21:55:05
阅读次数:
366
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
【Logos】 Logos is a component of theTheosdevelopment
suite that allows method hooking code to be written easily and clearly, using a
set of special pr....
分类:
其他好文 时间:
2014-05-11 15:50:10
阅读次数:
305