Lua映射值作为构造函数

时间:2018-05-18 14:58:08

标签: arrays dictionary constructor lua

我想将我的构造函数存储在map中,以便获得创建对象,即foreach中的不同定义类型

像这样的东西

df['comparison'] = df['company'].shift(-1).values[0] == df['company'].values[0]

1 个答案:

答案 0 :(得分:0)

使用以下语法:

ObjByType = { integer = IntegerObj, float = FloatObj }

或者如果字段不是简单的话,那么这个:

ObjByType = { ["integer"] = IntegerObj, ["float"] = FloatObj }