Skip to content

Instantly share code, notes, and snippets.

@j5ik2o
Created October 19, 2011 10:58
Show Gist options
  • Save j5ik2o/1297971 to your computer and use it in GitHub Desktop.
Save j5ik2o/1297971 to your computer and use it in GitHub Desktop.
Scala - 補助コンストラクタ
package money
import java.util.Currency
import java.util.Locale
class Money(val amount : BigDecimal, val currency: Currency) {
// 補助コンストラクタ
def this(amount : BigDecimal) = this(amount, Currency.getInstance(Locale.getDefault))
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment