如何将grpc::string_ref转换为std::string以用于内部库调用?我正在尝试通过const grpc::string_ref& to jwt::decode(const std::string&)调用Ans:似乎grpc::string_ref提供了迭代器,字符串保存为char*,因此迭代器可以用于迭代string_ref并追加和创建std::string
grpc::string_ref
std::string
const grpc::string_ref& to jwt::decode(const std::string&)
char*
tct7dpnv1#
您可以使用std::string的iterator constructor(6)。
jwt::decode(std::string(ref.begin(), ref.end()))
1条答案
按热度按时间tct7dpnv1#
您可以使用
std::string
的iterator constructor(6)。