stout代码分析
Posted 后端技术小屋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stout代码分析相关的知识,希望对你有一定的参考价值。
最近在使用mesos做高可用设计,在编译的过程中注意到mesos依赖stout,一个仅仅含有头文件的c++基础库。stout代码简洁,设计优雅,值得一读。
stout从内容上可细分为以下几块:
- Primitives: Duration, Error, None, Nothing, Option, Owned, Result, Try, StopWatch,UUID。
- Collections: cache, hashmap, hashset, multihashmap,对常用数据结构进行了一些封装,增加可用性。
- Namespaces: fs, gzip, JSON, lambda,net, os, path, protobuf, strings, 对操作系统的api进一步封装。
- Miscellaneous: copy, EXIT, fatal, gtest, numify, preprocessor, stringify
接下来将stout中的类库进行逐个分析。欲知详情,请等待下期分解。
以上是关于stout代码分析的主要内容,如果未能解决你的问题,请参考以下文章