摘要: #include #include #include string getCurrentTime(){ long long time_last; time_last = time(NULL); struct timeb t1; ftime(&t1); time_t ttt= t1.millitm+t1.time*1000; std::stringstream ss; ss << ttt; std::string ts = ss.str(); return ts;} 阅读全文
posted @ 2014-03-25 16:51 taylor.yan 阅读(4609) 评论(0) 推荐(0) 编辑