1

在 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]

4

1 回答 1

1

我假设代表您/代码m中数组的长度。memcpymemset

skip[0 .. size - shift] = skip[shift .. size]; // may throw
skip[size - shift .. size] = 0;

请注意,如果数组边界重叠,您将在第一行得到运行时错误。

于 2015-08-15T18:56:56.613 回答