上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 39 下一页
摘要: 在写网络程序的时候,建立TCP socket: sock = socket(PF_INET, SOCK_STREAM, 0);然后在绑定本地地址或连接远程地址时需要初始化sockaddr_in结构,其中指定address family时一般设置为AF_INET,即使用IP。 相关头文件中的定义:AF 阅读全文
posted @ 2019-07-07 15:18 PKICA 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 集群:简单识记:多个人在一起作同样的事 。 分布式 :把一个大的问题拆分为多个小的问题,并分别解决,最终协同合作。分布式的主要工作是分解任务,将职能拆解。简单识记:多个人在一起作不同的事 。 阅读全文
posted @ 2019-07-06 17:14 PKICA 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1. 多个条件查询in in db.inventory.find( { qty: { $in: [ 5, 15 ] } } ) 2. 日期查询 db.books.find({"time":{"$gt":ISODate("2019-06-29T00:00:00Z")}},{"time":1}) 查询时 阅读全文
posted @ 2019-06-25 19:51 PKICA 阅读(4346) 评论(0) 推荐(0) 编辑
摘要: 普通new一个异常的类型std::bad_alloc。这个是标准适应性态。 在早期C++的舞台上,这个性态和现在的非常不同;new将返回0来指出一个失败,和malloc()非常相似。 在内存不足时,new (std::nothrow)并不抛出异常,而是将指针置NULL。 在一定的环境下,返回一个NU 阅读全文
posted @ 2019-05-17 20:01 PKICA 阅读(2282) 评论(0) 推荐(0) 编辑
摘要: 1.下载protobuf #wget -c https://github.com/protocolbuffers/protobuf/releases/download/v3.7.1/protobuf-cpp-3.7.1.tar.gz 或者百度网盘下载protobuf3.7.1 提取码: wfu5 下 阅读全文
posted @ 2019-05-17 19:31 PKICA 阅读(297) 评论(0) 推荐(0) 编辑
摘要: std::enable_shared_from_this 能让一个对象(假设其名为 t ,且已被一个 std::shared_ptr 对象 pt 管理)安全地生成其他额外的 std::shared_ptr 实例(假设名为 pt1, pt2, ... ) ,它们与 pt 共享对象 t 的所有权。 若一 阅读全文
posted @ 2019-05-12 09:59 PKICA 阅读(358) 评论(0) 推荐(0) 编辑
摘要: op Objective The objective is to disable IPv6 on Ubuntu Bionic Beaver Linux Operating System and Software Versions Operating System: - Ubuntu 18.04 Bi 阅读全文
posted @ 2019-04-26 07:20 PKICA 阅读(220) 评论(0) 推荐(0) 编辑
摘要: /*! * Email: guxuanqing@gmail.com * Auth: xor * Date: 2019-5-17 * File: vectorPtr.cpp * Class: %{Cpp:License:ClassName} (if applicable) * Brief: * Not 阅读全文
posted @ 2019-04-09 22:01 PKICA 阅读(269) 评论(0) 推荐(0) 编辑
摘要: function与bind /** @file funcLambdaBind.cpp * @note * @brief * @author that * @date 2019-7-3 * @note * @history * @warning */ #include <iostream> using 阅读全文
posted @ 2019-03-31 17:30 PKICA 阅读(601) 评论(0) 推荐(0) 编辑
摘要: 一、什么是编码解码 编码:利用特定的算法,对原始内容进行处理,生成运算后的内容,形成另一种数据的表现形式,可以根据算法,再还原回来,这种操作称之为编码。 解码:利用编码使用的算法的逆运算,对经过编码的数据进行处理,还原出原始数据,这种操作称之为解码。 二、什么是Base64编码算法 可以将任意的字节 阅读全文
posted @ 2019-03-29 00:34 PKICA 阅读(2275) 评论(0) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 39 下一页