有没有什么方法/技巧可以将 std::set 传递给需要 C 数组的 C API?

发布于 2024-12-07 22:59:53 字数 44 浏览 1 评论 0原文

有没有办法/技巧将 std::set 传递给需要 C 数组的 C API?

Is there is a way/trick to pass std::set to a C API which expects C Array?

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

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

发布评论

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

评论(3

草莓味的萝莉 2024-12-14 22:59:53

不直接,但您可以首先 将集合转换为向量(例如, vec),然后传递&vec[0],它是一个指向内部向量数组第一个元素的指针。

使用 C++11,您可以传递 vec.data() 而不是 &vec[0]

Not directly, but you can first convert the set to a vector (called, say, vec), and then pass &vec[0], which is a pointer to the first element of the internal vector array.

With C++11, you can pass vec.data() instead of &vec[0].

偷得浮生 2024-12-14 22:59:53

不,但是您可以很快用您设置的内容填充数组。例如,假设 mySet 是与 YOUR_TYPENAME 类型相同的集合:

YOUR_TYPENAME arr* = new YOUR_TYPENAME[mySet.size()];
std::copy(mySet.begin(), mySet.end(), arr);

那么只需将 arr 传递到 C API 中即可。

No, but you could fill an array with your set contents pretty quickly. For example, assuming mySet is a set of the same type as YOUR_TYPENAME:

YOUR_TYPENAME arr* = new YOUR_TYPENAME[mySet.size()];
std::copy(mySet.begin(), mySet.end(), arr);

Then just pass arr into the C API.

单调的奢华 2024-12-14 22:59:53

为了完整起见,当前接受的答案的向量替代方案如下所示:

{
  std::vector<YOUR_TYPENAME> arr(mySet.begin(), mySet.end());
  Your_C_API(&arr[0]);
  // memory implicitly freed on next line
}

我更喜欢这种风格,因为:

  • 它需要更少的行,并且
  • 它消除了我经常犯的一类错误(即忘记 delete< /代码>)。

For completeness, the vector alternative to the currently accepted answer would look like this:

{
  std::vector<YOUR_TYPENAME> arr(mySet.begin(), mySet.end());
  Your_C_API(&arr[0]);
  // memory implicitly freed on next line
}

I prefer this style because:

  • It takes one fewer lines, and
  • It eliminates a class of mistakes that I often make (that is, forgetting to delete).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文