我收到错误
Error: template std.array.Appender!(string).Appender.put does not match any
function template declaration
我正在尝试使用Appender
。你能告诉我如何让它发挥作用吗?
import std.array;
import std.stdio;
void app(inout Appender!(string) as)
{
char ch = 'o';
as.put(ch);
}
void main()
{
auto app2 = appender!string();
//writeln(typeid(app));
app2.put('g');
app(app2);
}
答案 0 :(得分:1)
将inout
更改为ref
。
inout
用于将cont
/ immutable
/ none
属性从函数参数传输到其参数。 ref
用于通过引用传递函数参数。