Я только начал играть в scala и использовал «Scala By Example» Мишеля Шинца (http://www.scala -lang.org / node / 198 ) как отправную точку. В сегменте признаков я попытался использовать отражение / вызов метода для проверки признаков и хотел проверить все операторы сравнения. Я столкнулся с проблемой искажения имен и нашел решение в NameTransformer для операторов. Однако оператор! =, Мне кажется, что он не переводится в эквивалентную функцию, такую как <, <=,>,> =, equals. Интересно, есть ли способ вызвать! = Так же, как другие операторы, которые я не обнаружил?
Из PDF:
trait ord {
def < (that:Any):Boolean
def <= (that:Any):Boolean = (this < that) || (this == that)
def > (that:Any):Boolean = !(this <= that)
def >= (that:Any):Boolean = !(this < that)
}
class Date(y:Int, m:Int, d:Int) extends ord{
def year = y
def month = m
def day = d
override def toString():String = year + "-" + month + "-" + day
override def equals(that:Any): Boolean =
that.isInstanceOf[Date] && {
val o = that.asInstanceOf[Date]
o.day == this.day && o.month == this.month && o.year == this.year
}
override def <(that:Any):Boolean = {
if (!that.isInstanceOf[Date])
error("Cannot compare " + that + " and date")
val o = that.asInstanceOf[Date]
(year < o.year) ||
(year == o.year && (month < o.month ||
(month == o.month && day < o.day )))
}
}
Мой код:
def Classes_Traits(){
val (d1, d2, d3) = (new Date(2001, 10, 1), new Date(2001, 10, 1), new Date(2000, 1, 10))
println("d1 : " + d1)
println("d2 : " + d2)
println("d3 : " + d3)
Array((d1,d2), (d2,d3), (d3,d1)).foreach {
(comp:(Date, Date)) =>
println("comparing " + comp._1 + " and " + comp._2)
val d = comp._1.getClass()
Map(
"equals " -> "equals",
"not equals " -> "!=",
"less than " -> "<",
"less than or equal" -> "<=",
"more than " -> ">",
"more than or equal" -> ">=").foreach {
(a) =>
println(a._1 + " : " +
d.getMethod(scala.reflect.NameTransformer.encode(a._2),
classOf[Object]).invoke(comp._1, comp._2))
}
/*println("equals : " + m.invoke(comp._1, comp._2) )
// Same as above
println(comp._1 + " == " + comp._2 + " is " + (comp._1 == comp._2))
println(comp._1 + " != " + comp._2 + " is " + (comp._1 != comp._2))
println(comp._1 + " > " + comp._2 + " is " + (comp._1 > comp._2))
println(comp._1 + " >= " + comp._2 + " is " + (comp._1 >= comp._2))
println(comp._1 + " < " + comp._2 + " is " + (comp._1 < comp._2))
println(comp._1 + " <= " + comp._2 + " is " + (comp._1 <= comp._2))
*/
}
}
Исключение:
сравнивая 2001-10-1 и 2001-10-1
больше или равно: правда
больше чем: ложь
Exception in thread "main" java.lang.NoSuchMethodException: proj2.Main$Date.$bang$eq(java.lang.Object)
at java.lang.Class.getMethod(Class.java:1605)
at proj2.Main$$anonfun$Classes_Traits$1$$anonfun$apply$1.apply(Main.scala:180)
at proj2.Main$$anonfun$Classes_Traits$1$$anonfun$apply$1.apply(Main.scala:178)
at scala.collection.immutable.HashMap$HashMap1.foreach(HashMap.scala:125)
at scala.collection.immutable.HashMap$HashTrieMap.foreach(HashMap.scala:344)
at proj2.Main$$anonfun$Classes_Traits$1.apply(Main.scala:177)
at proj2.Main$$anonfun$Classes_Traits$1.apply(Main.scala:168)
at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:34)
at scala.collection.mutable.ArrayOps.foreach(ArrayOps.scala:35)
at proj2.Main$.Classes_Traits(Main.scala:167)
at proj2.Main$.main(Main.scala:26)
at proj2.Main.main(Main.scala)