摘要:
问题描述 问题和 unordered_set 有关,相关代码如下: //打印unordered_set的所有值 void printSet(const std::unordered_set<std::string> &data) { int index = 0; auto it = data.beg 阅读全文
摘要:
1、说明 示例中的proto文件描述了一个数据结构,遵循 Protobuf 语法 示例: message TestOne { required string name = 1; optional int32 age = 2; } 2、字段类型 | type | C++ type | Java Typ 阅读全文