在Scala中有如下几种方式来访问字符串中特定位置的字符。
scala> "hello".charAt(1)res21: Char = escala> "hello"(1)res22: Char = escala> "hello".apply(1)res23: Char = e
本文共 187 字,大约阅读时间需要 1 分钟。
在Scala中有如下几种方式来访问字符串中特定位置的字符。
scala> "hello".charAt(1)res21: Char = escala> "hello"(1)res22: Char = escala> "hello".apply(1)res23: Char = e
转载于:https://my.oschina.net/nenusoul/blog/802102