根据Scala的文档的方法Range.end
,则返回“的范围内的异端”。 那么,为什么这两者的返回相同的值to
和until
的符号? 例如:
Welcome to Scala version 2.9.2 (Java HotSpot(TM) Server VM, Java 1.7.0).
Type in expressions to have them evaluated.
Type :help for more information.
scala> (1 to 10).end
res0: Int = 10
scala> (1 until 10).end
res1: Int = 10
不应res0 == 11
?