如何从 List[Any] 中取出所有 Int 值?

发布于 2024-10-06 12:21:59 字数 101 浏览 0 评论 0原文

我在 Scala 中有一个 List[Any],其中包含 Int、String、Char 和 List 的混合。我只想将 Int 值提取到一个新列表中,即 List[Int]。我该怎么做?

I have a List[Any] in Scala which contains a mix of Int, String, Char, and List. I want to pull out only the Int values into a new List that would be List[Int]. How do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终止放荡 2024-10-13 12:21:59

尝试使用 collect 方法,该方法类似于 mapfilter 的组合,并以部分函数作为参数。

List(1, 2, "Foo", 39.7 ).collect{ case i: Int =>; i }

结果是 List(1, 2),编译器知道类型是 List[Int] 而不是 List[Any]。

Try the method collect, which is like a combination of map and filter with a partial function as its parameter.

List(1, 2, "Foo", 39.7 ).collect{ case i: Int => i }

The result is List(1, 2), and the compiler knows that the type is List[Int] rather than List[Any].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文