1.C++ & 混型C++能够记住其模板参数的类型,对于混型来说,使用参数化类型更加优雅。#include #include #include using namespace std;template class TimeStamped : public T { long timeStamp;pu....
分类:
编程语言 时间:
2014-07-22 22:54:56
阅读次数:
332
数据库的Timeout 其实有很多种情况。一个是执行的超时时间 executionTimeOut,一个是连接的超时时间connectionTimeOut,还有呢? 等待的超时时间ReadTimeout。不过很多数据库情况下connectionTimeOut 就是ReadTimeoutprops.pu...
分类:
数据库 时间:
2014-07-20 10:14:11
阅读次数:
296
/// /// 双向链表节点类 /// /// 节点中的存放的数据类型 public class Node where T:IComparable { /// /// 当前节点的数据 /// T data; /// /// 节点中存放的数据 /// pu...
分类:
其他好文 时间:
2014-07-18 18:22:59
阅读次数:
272
1、获取epel地址登录https://fedoraproject.org/wiki/EPEL/zh-cn,看“如何获取EPEL的软件包”,根据你的操作系统版本,复制对应的下载地址。2、下载epel的yum源执行如下命令:rpm -Uvh http://dl.fedoraproject.org/pu...
分类:
其他好文 时间:
2014-07-17 23:06:31
阅读次数:
346
javah在eclipse中设置参数:location(javah.exe的位置)working dir(${project_loc}/src)-classpath .;./classes -d ${project_loc}\jni -jni ${java_type_name}回调的java代码pu...
分类:
其他好文 时间:
2014-07-16 21:38:29
阅读次数:
170
public class FileSplit extends InputSplit implements Writable { private Path file; private long start; private long length; private String[] hosts; pu...
分类:
其他好文 时间:
2014-07-16 18:32:45
阅读次数:
236
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
适配器模式的定义:将一个类的接口变成另一个客户端所期待的的接口,从而使原本因接口不匹配而无法在一起工作的两个类都能在一起工作。
1:目标角色:把其他类转成何种接口,也就是我们期望的接口。package adapter;
public interface Target {
//目标角色有自己的方法
public void request();
}
package adapter;
pu...
分类:
其他好文 时间:
2014-07-11 08:40:34
阅读次数:
223
小算法:合并两个有序数组,合并之后仍然有序 1 /** 2 * 合并两个有序数组,合并后仍然有序 3 * @param a 要合并的数组A 4 * @param b 要合并的数组B 5 * @param c 合并后的数组C 6 */ 7 pu...
分类:
其他好文 时间:
2014-07-10 16:53:45
阅读次数:
253
For the exercises in this chapter we need a list of English words. There are lots of word lists available on the Web, but the most suitable for our pu...
分类:
其他好文 时间:
2014-07-05 22:45:55
阅读次数:
545