我需要提前生成我不知道的功能名称,以便进行记录
记录应如下:
record(day1:[...] day2:[...] day3:[...] ...)
。
由于我不知道该记录将包含多少天,我不能自己编写功能名称!
我尝试了几件事:
{For 1 N 1
proc {$ I}
local
Label
Day="day"
in
...
% Label=Day+I
% cannot add a list and a number
% Label={List.append Day {Int.toString I}}
% creates the right string, but when trying to make the record: type error
% Label=dayI
% works but produces only "dayI" features, all the same
% Label=day + I
% cannot add a feature and a number
...
end
end
}
然后在列表中处理所有标签,以便使用Record.makeTuple
。
有没有办法创建动态功能或操纵它们?
现在,我找到的唯一选择是使用字符串,而不是作为一个功能但使用一对:
record("day1"#[..] "day2"#[..] ...)
但这不是我想要的。
感谢您的回答或帮助。
答案 0 :(得分:1)
记录的特征是原子。要将字符串转换为原子,请使用String.toAtom
。例如:
declare
L = {String.toAtom "dynamic string"}
R = {MakeRecord record [L]}
{Show R}
然而,如果我没记错的话,有一个警告:原子不是垃圾收集的。如果你创建了很多不同的原子,你可能会遇到内存问题。