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.
可能重复: 何时在 Scala 方法声明中使用等号?
有什么区别
def x {}
和
def x = {}
?
def x {}被称为“程序”风格,它是def x: Unit = {}(引用 Viktor Klang from this post)的简写。
def x: Unit = {}