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
以下内容出自:> 周三,9:00,我刚刚坐到位置,打开电脑准备开始干活。 “小三,小三,叫一下其它同事,到会议室,开会”老大跑过来吼,带着淫笑。还不等大家坐稳,老大就开讲了, “告诉大家一个好消息,昨天终于把牛叉模型公司的口子打开了,要我们做悍马模型,虽然是第一个车辆模型,但是我们有能力,有信...
分类:
其他好文 时间:
2014-07-16 15:44:54
阅读次数:
331
今天在编写model时,突然发现了“Cannot assign to 'self' outside of a method in the init family”问题。后通过搜索解决了此问题,记录之。有时候我们重写父类的init方法时不注意将init后面的第一个字母写成了小写,在这个方法里面又调用父...
分类:
其他好文 时间:
2014-07-16 15:44:36
阅读次数:
193
A delegate is a type that safely encapsulates a method, similar to a function pointer in C and C++. Unlike C function pointers, delegates are object-o...
分类:
其他好文 时间:
2014-07-16 15:43:31
阅读次数:
228
在使用Aspectj获取方法注解信息的时候,可以使用下面的代码片段: /** * Get value of annotated method parameter */ private T getMethodAnnotation(ProceedingJoinPoint j...
分类:
Web程序 时间:
2014-07-16 14:01:20
阅读次数:
291
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
package com.factory.webserviceutils;import java.io.IOException;import java.util.ArrayList;import java.util.List;import org.ksoap2.SoapEnvelope;import ...
分类:
Web程序 时间:
2014-07-14 21:06:00
阅读次数:
276
Java 异常解决
在你的代码前加一句
System.setProperty("java.util.Arrays.useLegacyMergeSort", "true");
我也不知道什么原理,但是解决了!!!哈哈...
分类:
编程语言 时间:
2014-07-14 20:39:48
阅读次数:
1842