摘要: #include <iostream>#include <fstream>#include <uuid/uuid.h>#include <ctime>#include <unistd.h>#include <sstream> static char *uuidValue = (char *)mall 阅读全文
posted @ 2021-12-24 17:31 FredGrit 阅读(29) 评论(0) 推荐(0) 编辑
摘要: void getSize21() { ifstream wFile; wFile.open("log3.txt",ios::ate); if(!wFile.is_open()) { cout<<"Open log3.txt failed!"<<endl; } streampos size; size 阅读全文
posted @ 2021-12-24 16:38 FredGrit 阅读(48) 评论(0) 推荐(0) 编辑
摘要: void getchar14() { char ch; while (1) { ch = getchar(); if(isalpha(ch)) { cout << "ch=" << ch << endl; } } } 阅读全文
posted @ 2021-12-24 15:41 FredGrit 阅读(24) 评论(0) 推荐(0) 编辑