在 D 语言中,假设代码的以下语句的等价物是什么:-
int size = 8;
int shift = 1;
int[size] skip;
int[size] suff;
memcpy(&skip[0], &skip[0]+shift, (m-shift)*(int.sizeof));
memset(&skip[0]+(m-shift),0, shift*(int.sizeof))
我在想转换是:-
skip[0 .. size-1] = skip[shift .. size-1 ]; //For the memcpy();
skip[0 .. size-1] = 0; //For the memset();
但这似乎对我不起作用,因为 dmd(v2.066.1) 给出了错误slice [8..7] exceeds array bounds [0..8]
。