摘要: package c5 class Counter { private var value = 0 def increment(){ if(value < Int.MaxValue){ value += 1 } } def current() = value } class BankAccount{ val balance = 0 def de... 阅读全文
posted @ 2018-01-11 11:23 AryaStark 阅读(100) 评论(0) 推荐(0)