gpt4 book ai didi

scala - 将列表 [Int] 映射到字符

转载 作者:行者123 更新时间:2023-12-03 22:57:29 26 4
gpt4 key购买 nike

我试图在 List[Int]映射:

List(1,2,3).map(_.toChar)
>> List[Char] = List(?, ?, ?)

但是我看到了一堆?

这是怎么回事?

最佳答案

你想要 List(1,2,3).map(_.toString.head)Int.toCharascii 值转换为其对应的 Char。例如:

(80).toChar   // P

ascii 值 1,2,3 的字符是 control characters无法呈现。

关于scala - 将列表 [Int] 映射到字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29224053/

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