如何将 D 数组转换为 C 变量?
我想在 D 中转换以下形式的数组:
string[] arrayStr = [ "hi, "is fun", "use D programming" ];
我有一个需要 C 变量的 C 函数:
void c_func( const char* format, ... );
我可以这样做:
foreach(str; arrayStr)
func( str );
但这似乎是在破解 C 变量,我宁愿直接转换为 C 变量,
我该怎么做?
谢谢
I would like convert an array in D of the form:
string[] arrayStr = [ "hi, "is fun", "use D programming" ];
I have a C function which takes a C variadic:
void c_func( const char* format, ... );
I could do:
foreach(str; arrayStr)
func( str );
But this seems like hacking the C variadic and I would rather convert directly to C vararg,
How can I do this?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AD数组是一个由长度和指针组成的结构体。例如,您可以通过将 D 字符串格式化为“%.*s”来将其传递给 printf。
因此,如果将数组传递给 C 函数的可变参数,它将在其可变参数中找到一个 long int (length) 和一个 char[]* (ptr)。
A D array is a struct consisting of length and pointer. For instance, you can pass a D string to printf by formatting it as "%.*s".
So if you pass your array to the C function's variadic argument, it will find a long int (length) and a char[]* (ptr) in its varargs.