摘要: 对于字符串,主要的操作时字符串替换和字符串分割,下面给出这几个函数//简洁,不保留空串std::vector<std::string> split_s(const char* src, const char* delim);//保留空串,防止参数错误std::vector<std::string> split_x(const char* src, const char* delim);std::vector<std::string> split_c(const char* src, char delim);//整体替换std::string replace_ 阅读全文
posted @ 2012-12-02 20:38 哈哈开心 阅读(1005) 评论(0) 推荐(0) 编辑
摘要: 日志信息可以输出到命令行实时观测,也需要输入到文件保存日志日后查看下面的两个操作将实现这个功能,注意这个里面用了MFC的类,所以需要在支持MFC的工程中才可以使用,以后会修改成是需要STL库或不需要文件操作:log_file.h#ifndef _LOG_FILE_H#define _LOG_FILE_Htypedef enum{ OP_REJECT, OP_ACCESS}OP_TYPE;class operator_file{private: CFile c_file; OP_TYPE op_type; CString BASE_DIR;public: op... 阅读全文
posted @ 2012-12-02 20:32 哈哈开心 阅读(325) 评论(0) 推荐(0) 编辑