#include <time.h>

clock_t start,finish;
 double totaltime;
 start=clock();

finish=clock();
 totaltime=(double)(finish-start)/CLOCKS_PER_SEC;
 cout<<"词典序列化到磁盘的时间为"<<totaltime<<endl;

posted on 2010-09-25 08:54  finallyly  阅读(405)  评论(2编辑  收藏  举报