源代码学习
LeeYJ-cs
熟悉C++,了解STL库,掌握常用数据结构与算法;了解Python和go编程语言;了解actor编程模型。 熟悉分布式事务协议,分布式一致性算法,容器资源管理与编排调度、了解Docker、k8s相关技术。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
生产者消费者简易实现
#include <unistd.h> #include <stdio.h> #include <iostream> #include <thread> #include &.原创 2020-07-30 22:27:45 · 167 阅读 · 0 评论 -
CMake手册---添加库(二)
2. 添加一个库For this tutorial we will put the library into a subdirectory called MathFunctions. This directory already contains a header file, MathFunctions.h, and a source file mysqrt.cxx. The source file has one function called mysqrt that provides simila原创 2020-07-27 22:16:01 · 162 阅读 · 0 评论 -
CMake手册---基础操作(一)
本文参考CMake Tutorial# 设置cmake的最低版本cmake_minimum_required(VERSION 3.10)# 设置项目名称和版本号project(Tutorial VERSION 1.0)# 添加一个可执行文件构建目标add_executable(Tutorial tutorial.cxx)# 配置文件,通过头文件传递,使得在代码文件中使用CMake中定义的的变量onfigure_file(TutorialConfig.h.in TutorialCon原创 2020-07-24 23:05:35 · 144 阅读 · 0 评论 -
libgo初探,channel使用
#include <unistd.h> #include <stdio.h> #include <iostream> #include <libgo/coroutine.h> using namespace std; ..原创 2020-07-12 23:07:50 · 1027 阅读 · 0 评论
分享