码迷,mamicode.com
首页 > 其他好文 > 详细

Scala 学习笔记

时间:2014-05-16 09:01:12      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:class   c   int   a   string   os   

class Rational(n: Int, d: Int) {
  require(d != 0)
  override def toString = n +"/"+ d
}
The require method takes one boolean parameter. If the passed value is
true, require will return normally. Otherwise, require will prevent the ob-
ject from being constructed by throwing an IllegalArgumentException .

Scala 学习笔记,布布扣,bubuko.com

Scala 学习笔记

标签:class   c   int   a   string   os   

原文地址:http://www.cnblogs.com/briller/p/3725768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!