
C++
文章平均质量分 87
metarun
这个作者很懒,什么都没留下…
展开
-
ATL服务程序编写
打开VS2013,文件--->新建--->项目,选择ATL名称自己随便取,确定 下一步 完成 移除ServiceDemoPS项目 核心代码 HRESULT InitializeSecurity() throw() { // TODO : 调用 CoInitializeSecurity 并为服务提供适当的安全设置 // 建议 - PKT 级别的身份验证、 // RPC_C_IM...原创 2021-10-29 10:38:13 · 592 阅读 · 0 评论 -
最大公约数
辗转相除求最大公约数法: int gcd(int a, int b) { int r; while (b > 0) { r = a % b; a = b; b = r; } return a; }原创 2020-08-04 15:41:46 · 171 阅读 · 0 评论 -
stl map常用函数
//构造函数 //map() map<char, int> m1; //指定一个比较函数来创建map对象 struct KeyCompare { bool operator()(const char* s1, const char* s2) const { return strcmp(s1, s2) < 0; } }; map<const char...原创 2020-07-14 18:22:00 · 314 阅读 · 0 评论 -
stl multiset常用函数
//构造函数 //multiset() multiset<int> ms1; //指定一个比较函数来创建multiset对象 struct KeyCompare { bool operator()(const char* s1, const char* s2) const { return strcmp(s1, s2) < 0; } }; multise...原创 2020-07-14 17:39:48 · 368 阅读 · 0 评论 -
stl set常用函数
//构造函数 //set() set<int> s1; //指定一个比较函数来创建set对象 struct KeyCompare { bool operator()(const char* s1, const char* s2) const { return strcmp(s1, s2) < 0; } }; set<const char*, Key...原创 2020-07-14 16:33:16 · 189 阅读 · 0 评论 -
stl list常用函数
//构造函数 //list() list<int> l1; //explicit list(size_type _Count) list<int> l2(10); //list(size_type _Count, const _Ty& _Val) list<int> l3(3, 11); //list(const _Myt& _Right) list<int> l4(...原创 2020-07-14 15:24:48 · 272 阅读 · 0 评论 -
stl deque常用函数
//构造函数 //deque() deque<int> d1; //explicit deque(const _Alloc& _Al) deque<int> d2; //deque(size_type _Count, const value_type& _Val) deque<int> d3(3, 3); //deque(const _Myt& _Right) deque...原创 2020-07-14 14:49:20 · 267 阅读 · 0 评论 -
stl vector常用函数
//构造函数 //explicit vector(const _Alloc& _Al) vector<int> v1; //explicit vector(size_type _Count) vector<double> v2(12); //vector(size_type _Count, const value_type& _Val) vector<double> v3(10, 1.3); ...原创 2020-07-13 14:49:29 · 170 阅读 · 0 评论 -
c++模板的特化
https://blog.youkuaiyun.com/gatieme/article/details/50953564转载 2020-05-13 18:11:02 · 130 阅读 · 0 评论 -
placement new
c++中new和delete是一对操作符,我们经常用new申请内存,调用类的构造函数初始化对象,然后用delete调用类的析构函数,释放内存。还有一个不常用的new操作符,placement new,在我们需要时传入一个指针,此时会在该指针所指向的内存空间构造对象,该指针所指向的地址可以是堆、栈、静态存储区。 struct MyStruct { MyStruct(int a, int b) : m_a(a) , m_b(b) { } My...原创 2020-05-13 15:33:02 · 158 阅读 · 0 评论 -
分级别递归构造树
A-------------1 A1--------2 B-------------1 B1--------2 C1----3 C2----3 B2--------2 B3--------2 struct Entry { string key; //键 string va...原创 2019-10-15 11:58:56 · 140 阅读 · 0 评论