原文
extern(C++)
函数使用在装饰名中包括
参数类型的C++
装饰名.但是,因为C++
没有像D的T[]
内置切片类型
,因此C++
没有有效的D切片
装饰.
因此,无法编译以D切片
为参数的extern(C++)
函数.
为此,可按结构
转换切片
:
cpp
struct DSlice(T)
{
T* ptr;
size_t length;
T[] opIndex() => ptr[0 .. length];
}
DSlice!T toDslice(T)(T[] slice)
{
return DSlice!T(slice.ptr, slice.length);
}
extern(C++) void hello(DSlice!(const(char)) arg)
{
import std.stdio;
writeln(arg[]);
}
void main()
{
const(char)[] greeting = "hello";
hello(greeting.toDslice);
}