- 论坛徽章:
- 0
|
template< class T, class T1 , class T2 , class T3>
void CompleClass( const std::string srcfilename, // 新的文件 文件都是排序的
const std::string oldfilename, // 旧的文件
const std::string newfilename, // 只出现在新文件里面的记录
const std::string changefilename, // 出现在 新文件里面 也出现在旧文件里面 发生变化的
const std::string nochangefilename, // 出现在 新文件里面 也出现在旧文件里面 但是没有发生变化的
const std::string lesschangfilename, // 只出现在旧文件里的
T1 recordsmaefun, // 2 个记录是否一致的比较函数 2个类是同一个类
T2 recordsmallsmaefun, // 2 个记录是否一致的比较函数 2个类是同一个类 但是发生了变化
T3 recordclessfun, // 2 个记录的大小比较函数
int today // 今天的日期
)
{
这个模板方法更难懂一些 |
|