
codes代码片段
遠蜀黍
这个作者很懒,什么都没留下…
展开
-
正则表达式备忘录
// boost_regex_test.cpp : Defines the entry point for the console application. // #include "stdafx.h" #pragma comment(lib, "libboost_regex-vc90-mt-gd-1_43.lib") #include "boost/regex/v4/regex.hpp"原创 2014-01-22 17:46:08 · 807 阅读 · 0 评论 -
C++传递对象函数指针作为参数
#include "stdafx.h" #include #include using namespace std; int fun1(char arg1) { cout<<arg1<<endl; return 1; } void funWithArgFun1(char arg1, int(*pFun)(char)) { pFun(arg1); } class A { publ原创 2014-01-24 14:02:59 · 4061 阅读 · 0 评论