protobuf相关

proto定义,repeated bytes是如何clear的

bytes是通过std::string实现的,repeated bytes会逐个调用每个std::string::clear,不会析构std::string

Leave a Comment