如何转换矢量<矢量<字符串> >至 char **

发布于 2025-01-03 16:06:19 字数 192 浏览 0 评论 0 原文

如何将 a 转换

vector< vector<string> > 

为 a

struct _Struct_3
{
public:
    char **__ptr;
    int __size;
};

How to convert a

vector< vector<string> > 

to a

struct _Struct_3
{
public:
    char **__ptr;
    int __size;
};

?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

記憶穿過時間隧道 2025-01-10 16:06:19

您可以迭代第一个向量,然后

vector<string> tokens;
char* args;                                                                                                 
args = new char [tokens.size()];                                                                                           
copy( tokens.begin(), tokens.end(), args);

You can iterate over first vector and then

vector<string> tokens;
char* args;                                                                                                 
args = new char [tokens.size()];                                                                                           
copy( tokens.begin(), tokens.end(), args);
挽你眉间 2025-01-10 16:06:19

vector 可以放入 char **__ptr 中,因此您需要将 vector>实际上是 _Struct_3* 吗?您只需迭代向量中的每个字符串并将其复制到结构的 char **__ptr 中,同时增加大小。对每个向量重复此操作。

vector<string> can be put into a char **__ptr, so you would want to put the vector<vector<string>> into a _Struct_3* right actually? You would simply iterate over each of the strings in the vector and copy it into the char **__ptr of the struct while incrementing the size simultaneously. Repeat this with each of the vectors.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文