标签: c++
如何将RepeatedField<google::protobuf::uint32>转换为const std::vector<double>?
RepeatedField<google::protobuf::uint32>
const std::vector<double>
答案 0 :(得分:6)
这应该很容易,因为重复的字段充当容器:
void foo(RepeatedField<google::protobuf::uint32> const & f) { std::vector<double> v(f.begin(), f.end()); // use v }