gpt4 book ai didi

C++ BSON 库如何从 c_str() 加载 bson?

转载 作者:行者123 更新时间:2023-11-28 03:37:47 29 4
gpt4 key购买 nike

假设我们有一个字符串,里面有二进制 bson 数据。如何加载到 bson object

最佳答案

我想在同一个页面上有一个例子可以做到这一点:

BSONObjBuilder b;
b << "name" << "Joe" << "age" << 33;
BSONObj p = b.obj();

也就是说,BSONObjBuilder 有一个const char * 的流运算符。

From the docs :

BSONObjBuilderValueStream & operator<< (const char *name)
Stream oriented way to add field names and values.

关于C++ BSON 库如何从 c_str() 加载 bson?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10347859/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com