从数组

时间:2015-10-06 09:32:54

标签: d ctfe

我可以在编译期间连接import读取的文件,如下所示:

enum string a = import("a.txt");
enum string b = import("b.txt");
enum string result = a ~ b;

如果我在数组中有文件名,怎么能得到连接的result

enum files = ["a.txt", "b.txt"];
string result;
foreach (f; files) {
  result ~= import(f);
}

此代码返回错误Error: variable f cannot be read at compile time

功能方法似乎也不起作用:

enum files = ["a.txt", "b.txt"];
enum result = reduce!((a, b) => a ~ import(b))("", files);

它返回相同的错误:Error: variable b cannot be read at compile time

3 个答案:

答案 0 :(得分:5)

也许使用字符串mixins?

enum files  = ["test1", "test2", "test3"];

// There may be a better trick than passing the variable name here
string importer(string[] files, string bufferName) {
    string result = "static immutable " ~ bufferName ~ " = ";

    foreach (file ; files[0..$-1])
        result ~= "import(\"" ~ file ~ "\") ~ ";
    result ~= "import(\"" ~ files[$-1] ~ "\");";

    return result;
}

pragma(msg, importer(files, "result"));
// static immutable result = import("test1") ~ import("test2") ~ import("test3");

mixin(importer(files, "result"));
pragma(msg, result)

答案 1 :(得分:3)

我找到了一个不使用字符串mixins的解决方案:

string getit(string[] a)() if (a.length > 0) {
    return import(a[0]) ~ getit!(a[1..$]);
}

string getit(string[] a)() if (a.length == 0) {
    return "";
}

enum files = ["a.txt", "b.txt"];
enum result = getit!files;

答案 2 :(得分:3)

@Tamas回答。

技术上可以使用static if将其包装到一个函数中,在我看来这看起来更清晰。

string getit(string[] a)() {
    static if (a.length > 0) {
        return import(a[0]) ~ getit!(a[1..$]);
    }
    else {
        return "";
    }
}

技术上也是

static if (a.length > 0)

可能是

static if (a.length)

您还可以考虑像这样的未初始化数组

string getit(string[] a)() {
    static if (a && a.length) {
        return import(a[0]) ~ getit!(a[1..$]);
    }
    else {
        return "";
    }
}

用法仍然相同。

enum files = ["a.txt", "b.txt"];
enum result = getit!files;