10 2024 档案
摘要:// 基本情况:没有更多的 bitset 需要拼接 template<typename... Args> std::bitset<8 * sizeof...(Args)> concatenate_bitsets() { return std::bitset<8 * sizeof...(Args)>(
阅读全文
摘要:1.简介 GoogleTest是由Google开发的一个C++测试框架,支持Linux、Windows和macOS操作系统,使用Bazel或CMake构建工具。 项目主页:https://github.com/google/googletest 官方文档:https://google.github.
阅读全文