原文
'\0'*10
没用,这样:
import std.range; repeat("\0", 10).join("");
或数组:
char[] n; n.length = 10; n[] = '\0';