The modern meaning for algorithm is quite similar to that of recipe, process, method, technique, procedure, routine, rigmarole, except that the word "...
分类:
其他好文 时间:
2014-07-16 19:15:58
阅读次数:
184
今天在编写model时,突然发现了“Cannot assign to 'self' outside of a method in the init family”问题。后通过搜索解决了此问题,记录之。有时候我们重写父类的init方法时不注意将init后面的第一个字母写成了小写,在这个方法里面又调用父...
分类:
其他好文 时间:
2014-07-16 15:44:36
阅读次数:
193
public class Test { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub /* * A 父类 * B 子类 * */ ...
分类:
其他好文 时间:
2014-07-16 11:59:48
阅读次数:
787
1.virtual 函数版本
class GameCharacter{
public:
virtual int healthValue() const; //返回人物的健康指数, derived classes 可重新定义它
};
2.使用 non-virtual interface 手法,那是 Template Method 设计模式的一种特殊形式。
让客户通过 public non-virtual 成员函数间接调用 private virtual 函数
class GameCharacter{
pu...
分类:
编程语言 时间:
2014-07-15 22:36:18
阅读次数:
364
package lianxi;public class Test1 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub //功能需求 求一个100...
分类:
其他好文 时间:
2014-07-15 09:56:48
阅读次数:
235
public class Table { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub WebD...
分类:
其他好文 时间:
2014-07-15 09:14:08
阅读次数:
422
FIELD OF THE INVENTIONThe present invention is related to computing systems, and more particularly to a system and method for adjusting to changes in ...
分类:
其他好文 时间:
2014-07-15 09:09:28
阅读次数:
345
form.submit({ url:"../addOrUpdatePack.shtml",method:'POST',success:function(f,action) {//f是代表formalert('rpackCode:'+action.result.rpackCode) }, ...
分类:
其他好文 时间:
2014-07-15 00:01:59
阅读次数:
262
1. Request和Response消息结构Request结构: METHOD path-to-resource HTTP-version-number HEAD requestbody(Optional)Response结构: HTTP-version...
分类:
其他好文 时间:
2014-07-14 22:16:13
阅读次数:
291
Java 异常解决
在你的代码前加一句
System.setProperty("java.util.Arrays.useLegacyMergeSort", "true");
我也不知道什么原理,但是解决了!!!哈哈...
分类:
编程语言 时间:
2014-07-14 20:39:48
阅读次数:
1842