在宏

时间:2016-01-24 11:06:49

标签: macros haxe

我正在尝试使用@:build@:autoBuild宏向类及其子类的所有实例添加静态变量和静态函数。

我设法让静态变量工作,但我不知道如何构建"来自各种EFunctionEFor等的函数

这是我到目前为止的代码:

macro static public function addGetId() :Array<Field>
{
    var fields : Array<Field> = Context.getBuildFields();

    // The static _id field
    var idField = {
        name : "_id",
        doc : null,
        meta : [],
        access : [AStatic, APrivate],
        kind : FVar(macro : Int, macro -1),
        pos : Context.currentPos()
    };

    // The getId function field
    var getIdField = {
        name : "getId",
        doc : "Returns the ID of this command type.",
        meta : [],
        access : [AStatic, APublic],
        kind : FFun({
            params : [],
            args : [],
            expr: // What do I have to write here???
            ret : macro : Int
        }),
        pos : Context.currentPos()
    };

    fields.push(idField);
    fields.push(getIdField);
    return fields;
}

以下是我想要添加的函数在普通代码中的样子,如果它实际上在.hx文件中:

public static function getId() : Int
{
    if (_id == -1)
    {
        _id = MySingleton.getInst().myGreatFunction()
    }
    return _id;
};

因此它引用了新添加的_id变量以及一些单例类函数 那么:完整的getIdField()怎么样?

奖金问题:
我最大的问题是完全缺乏这些功能的文档以及手册中的任何有用示例。是否有任何实用的教程来创建这样的函数?

奖金奖金问题:
paramsargsFFun之间有什么区别?

1 个答案:

答案 0 :(得分:3)

您可以像使用常规Haxe代码一样使用reification来编写函数体:

expr: macro {
    if (_id == -1) {
        _id = 0;
    }
    return _id;
},

params是类型参数列表,args是函数接收的参数列表。有一个关于这个on the Haxe Manual的琐事部分:

  

琐事:论据与参数

     

在其他一些编程语言中, 参数 参数 可互换使用。在Haxe中,引用方法时使用 参数 参数 引用 Type Parameters