1

假设我有一个抽象类的两个后代:

object Child1 extends MyAbstrClass {
    ...
}
class Child2 extends MyAbstrClass {
}

现在我想确定(最好在 的构造函数中MyAbstrClass)正在创建的实例是对象还是由以下内容创建的东西new

abstract class MyAbstrClass {
    {
        if (/* is this an object? */) {
            // do something
        } else {
            // no, a class instance, do something else
        }
    }
}

在 Scala 中有这样的可能吗?我的想法是将所有来自一个类的对象收集到一个集合中,但只有对象,而不是由new.

4

2 回答 2

1

这是一个相当俗气的想法:

trait X {
  println("A singleton? " + getClass.getName.endsWith("$"))
}

object Y extends X
Y // objects are lazily initialised! this enforces it

class Z extends X
new Z
于 2012-09-24T20:36:22.367 回答
1

就像是:

package objonly

/** There's nothing like a downvote to make you not want to help out on SO. */
abstract class AbsFoo {
  println(s"I'm a ${getClass}")
  if (isObj) {
    println("Object")
  } else {
    println("Mere Instance")
  }
  def isObj: Boolean = isObjReflectively

  def isObjDirty = getClass.getName.endsWith("$")

  import scala.reflect.runtime.{ currentMirror => cm }
  def isObjReflectively = cm.reflect(this).symbol.isModuleClass
}

object Foo1 extends AbsFoo

class Foo2 extends AbsFoo

object Test extends App {
  val foob = new Foo2
  val fooz = new AbsFoo { }
  val f = Foo1
}
于 2012-09-24T20:37:37.280 回答