标签:style java color strong string 类
Something new according to Java
1 + 2 跟 (1).+(2) 是一样的。
val str = "Hello world"
str indexOf ‘o‘ 跟 str.indexOf(‘o‘)是一样的
indexOf有两种形式的参数,int和str,其中这个int就是用来确定是否存在一个char的。。。。
Any method can be an operator
这句话应该这么理解,str.indexOf(‘o‘)中的indexOf应该叫做method,而str indexOf ‘o‘中的indexOf才是一个operator,跟+一样。。。。
一元(unary)操作符
str.toLowerCase()
str.toLowerCase
str toLowerCase()
str toLowerCase
他们都是一样的。。。。
有点问题,不知道为什么他们不能放倒一起
==
scala的==跟java的==不同
Java中的==用于primitive类型的时候,比较的是值,scala的方法是跟Java的一样
1 == 1; true == false; 等等
Java中==用于引用类型的时候比较的是引用类型的相等性,是否指向的是同一个对象(the two variables point to the same object on the JVM’s heap)。
OK SOMETHING WAIT FOR PREPAIR
val set1 = scala.collection.immutable.Set(1, 2, 3)
val set2 = scala.collection.mutable.Set(1, 2, 3)
set1 == set2 //true!!!
Programming In Scala Reading Note 4,布布扣,bubuko.com
Programming In Scala Reading Note 4
标签:style java color strong string 类
原文地址:http://www.cnblogs.com/voctrals/p/3808372.html