上一页 1 ··· 8 9 10 11 12 13 下一页
摘要: 1.拷贝构造函数是构造函数的一种,它只有一个参数,参数类型是本类的引用。 如果编写了拷贝构造函数,则默认的拷贝构造函数就不存在了。下面是一个非默认复制构造函数的例子。 class A{ public://普通构造函数 A(int a,int b):_a(a),_b(b){ cout<<"this i 阅读全文
posted @ 2021-03-27 14:52 dsfsadfdgd 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 1.namespace使用 namespace yapserver{ class A{ public: int get(){} int a; } } 使用类A定义对象: yapserver::A& a; 3. bool refund_trans_service<payment_mode>::hand 阅读全文
posted @ 2021-03-04 14:04 dsfsadfdgd 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 1.c_str c_str()返回的是一个临时指针,用于string类型转指针类型 string redis_cmd = "GET " + redis_key; result = _rd_client.exec_command(redis_cmd.c_str()); //exec_command定义 阅读全文
posted @ 2021-03-03 11:55 dsfsadfdgd 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 执行二进制文件时报错: error while loading shared libraries: libhiredis.so.1.0.1-dev: cannot open shared object file: No such file or directory 编译器只会使用/lib和/usr/ 阅读全文
posted @ 2021-02-20 16:58 dsfsadfdgd 阅读(2345) 评论(0) 推荐(0) 编辑
摘要: 1.单一指责原则 接口功能单一。 2.接口隔离原则 将大的接口拆分为几个相互独立的接口 3. 里氏替换原则 继承可以提高代码的复用率,但是父类的修改后子类也需要修改。 父类的修改不会影响子类 子类必须实现父类的抽象方法,但不得重写父类已实现的方法。 当子类覆盖或实现父类的方法时,方法的前置条件(即方 阅读全文
posted @ 2021-02-19 14:51 dsfsadfdgd 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 1. new和new() 区别 #include "add.h" #include <stdio.h> #include <iostream> #include <string.h> using namespace std; struct A { int m; }; // POD struct B 阅读全文
posted @ 2021-02-18 19:39 dsfsadfdgd 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 1.远程调用,结果最终可能为成功、失败、超时;而对于超时的情况,处理方最终的结果可能是成功,也可能是失败,调用方是无法知晓的。 笔者就曾经在项目中出现类似的情况,调用方先在本地写数据,然后发起RPC服务调用,但是处理方由于DB数据量比较大,导致处理超时,调用方在出现超时异常后,直接回滚本地事务,从而 阅读全文
posted @ 2021-02-03 16:33 dsfsadfdgd 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 注释 1.按v进入-- 可视(visual) --模式 2.然后用上下键选中需要注释的行数 3.然后按ctrl+v(win下面ctrl+q)进入列模式 4. 按大写“I”进入插入模式,输入注释符“#”或者是"//", 5.然后立刻按两下ESC 取消注释 ctrl + v 进入块选择模式,选中你要删除 阅读全文
posted @ 2021-02-03 12:41 dsfsadfdgd 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1.拷贝构造函数代码: 当类对象用于值传递时,会调用拷贝构造函数 #include<iostream> using namespace std; class CExample { private: int a; public: //构造函数 CExample(int b) { a=b; printf 阅读全文
posted @ 2021-02-03 12:02 dsfsadfdgd 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1.LVS实现四层负载均衡,负责管理nginx集群,nginx负责管理服务器集群,借助Keepalived实现nginx的高可用性。 2.nginx配置动态资源和静态资源访问 静态资源和动态资源访问分开配置,静态资源在location中使用本地文件路径配置方式,动态资源使用proxy_pass配置到 阅读全文
posted @ 2021-02-03 09:58 dsfsadfdgd 阅读(69) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 下一页