by shigemk2

当面は技術的なことしか書かない

プライマリコンストラクタを作ろう

The primary constructor of a Scala class is a combination of: The constructor parameters Methods that are called in the body of the class Statements and expressions that are executed in the body of the class

なお、Scalaのコンストラクタはこんなふうに説明されている。

Scalaクラスメモ(Hishidama's Scala class Memo)

classのブロックの中に直接処理を書くのがコンストラクターになる。

pc.scala

f:id:shigemk2:20150220002131p:plain