
Linux程序设计
墨格飘殇
不想依赖别人。
展开
-
regex.h - 正则表达式
包含头文件: #include 调用方式: string loginMsg = "ID:134579268PWD:15390710437Hywie#"; string patten = "^ID:[0-9]*PWD:([0-9]|[A-Z]|[a-z])*#"; if(!matchFunc(patten, loginMsg)) //格式原创 2013-06-09 10:46:22 · 3936 阅读 · 0 评论 -
Linux常用命令
原创 2013-06-12 22:48:46 · 354 阅读 · 0 评论 -
Linux解压缩文件--tar命令
原创 2013-06-12 22:50:42 · 522 阅读 · 0 评论 -
hash_map自定义数据类型作key
#include #include using namespace std; using __gnu_cxx::hash_map; struct Node{ int key; int value; bool operator==(const Node &node) const{ return (node.key == key && node.value == value); }原创 2015-12-25 13:21:45 · 1391 阅读 · 0 评论 -
C++类虚函数表
#include #include using namespace std; class Base1 { public: virtual void f() { cout << "Base1 f()" << endl; } virtual void g() { cout << "Base1 g()" << endl; } virtual void h() { co原创 2016-03-10 15:50:47 · 412 阅读 · 0 评论