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

trait1

时间:2018-07-07 22:39:10      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:package   his   com   xtend   main   ext   not   array   ESS   

package com.bjsxt.scala

trait IsEQU{
  def isEqu(o:Any):Boolean
  def isNotEqu(o:Any) :Boolean = !isEqu(o)
}

class Point(xx:Int, xy:Int) extends IsEQU {
  val x = xx
  val y = xy

  def isEqu(o: Any): Boolean = {
     o.isInstanceOf[Point]&&o.asInstanceOf[Point].x == this.x
  }
}

object Lesson_Trait2 {
  def main(args: Array[String]): Unit = {
    val point1 = new Point(1,2)
		val point2 = new Point(1,3)
    println(point1.isNotEqu(point2))
  }
}

  

trait1

标签:package   his   com   xtend   main   ext   not   array   ESS   

原文地址:https://www.cnblogs.com/huiandong/p/9278276.html

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