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 を引用) の省略形です。
def x: Unit = {}