gpt4 book ai didi

algorithm - 如何从 map 转换MapResult!到整数数组?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:17:49 26 4
gpt4 key购买 nike

我需要从 map! 隐式转换 MapResult 的方法模板类型从 autoint []。我该怎么做?

import std.stdio;
import std.conv;
import std.array;
import std.algorithm;

void main()
{
string s = "1,3,5,6,8";

int x [];
// auto xx = s.split(",").map!(a => to!int(a)); // working code
x = s.split(",").map!(a => to!int(a)); // not working
writeln(x);
}

最佳答案

隐式不可能,但可以用 array 显式:

int[] x = s.split(",").map!(a => a.to!int).array;

关于algorithm - 如何从 map 转换MapResult!到整数数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36557507/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com