当前位置: 首页 > 工具软件 > Stout > 使用案例 >

stout代码分析之零

澹台华翰
2023-12-01

  最近在使用mesos做高可用设计,在编译的过程中注意到mesos依赖stout,一个仅仅含有头文件的c++基础库。stout代码简洁,设计优雅,值得一读。

  stout从内容上可细分为以下几块:

  1. Primitives: Duration, Error, None, Nothing, Option, Owned, Result, Try, StopWatch,UUID。
  2. Collections: cache, hashmap, hashset, multihashmap,对常用数据结构进行了一些封装,增加可用性。
  3. Namespaces: fs, gzip, JSON, lambda,net, os, path, protobuf, strings, 对操作系统的api进一步封装。
  4. Miscellaneous: copy, EXIT, fatal, gtest, numify, preprocessor, stringify

  接下来将stout中的类库进行逐个分析。欲知详情,请等待下期分解。

  

转载于:https://www.cnblogs.com/taiyang-li/p/5877130.html

 类似资料: