c++ 将grpc::string_ref转换为std::string?

kqlmhetl  于 2023-05-20  发布在  其他
关注(0)|答案(1)|浏览(225)

如何将grpc::string_ref转换为std::string以用于内部库调用?
我正在尝试通过const grpc::string_ref& to jwt::decode(const std::string&)调用
Ans:似乎grpc::string_ref提供了迭代器,字符串保存为char*,因此迭代器可以用于迭代string_ref并追加和创建std::string

tct7dpnv

tct7dpnv1#

您可以使用std::stringiterator constructor(6)。

jwt::decode(std::string(ref.begin(), ref.end()))

相关问题