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

Scala的类和对象

时间:2019-01-27 16:34:54      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:方法   实例   div   nbsp   对象   new   class   turn   def   

object Test {
  def main(args: Array[String]): Unit = {
    val a1 = new tt  //实例化对象
    println(a1.a)
    a1.f(2)
    println(a1.a)
    println(a1)
  }
}
//定义一个类叫tt
class tt{
  var a = 0 //成员变量a
  def f(b:Int):Int = {
    a=a+b
    return a
  }
  override def toString = s"tt($a)" //toString方法
}

 

Scala的类和对象

标签:方法   实例   div   nbsp   对象   new   class   turn   def   

原文地址:https://www.cnblogs.com/lyr999736/p/10326353.html

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