Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将长文字与盒装 java.lang.Long 进行比较的 Scala 习语是什么?我想出了
myLong == new java.lang.Long(42L)
但它看起来很可怕,我希望有一些我不知道的可爱语法。
Scala 在内部==使用.equals方法。所以它会自动进行装箱-拆箱。正如@Frank S. Thomas 所说,工作方式是
==
.equals
myLong == 42L