0

我正在为一个可以接受规则以应用于给定数据结构的系统设计接口。

主系统应该作为接收命令的驱动程序工作,例如“将规则 X 应用于参数 U、V、W,...”。我在编译时不知道所有可能的规则,所以我想将参数类型信息嵌入到规则定义中并稍后验证它。

现在规则定义如下:

trait Rule {
  val argTypes: Seq[Class[_]]
  def apply(stt: State, args: Seq[Any])
}

中的实际参数的args数量必须与中定义的类型的数量相匹配argTypes,并且该方法apply应该返回一个操纵状态。(实际上,这是简化的解释,但这是一般的想法)。

我还实现了一个函数checkTypes,用于验证实际参数的类型是否与argTypes.

def checkTypes(args: Seq[Any]) {
  if (argTypes.size != args.size) {
    val msg = "Number of arguments (%d) does not match expected number (%d)."
    throw new IllegalArgumentException(msg.format(args.size, argTypes.size))
  }
  val err = "Incompatible argument type for [%s]. Expected: %s. Found: %s."
  for (i <- 0 until argTypes.size) {
    val formalClass = argTypes(i)
    val arg = args(i)
    val actualClass = arg.asInstanceOf[AnyRef].getClass
    if (!(formalClass isAssignableFrom actualClass)) {
      val errMsg = err.format(arg, formalClass.getName, actualClass.getName)
      throw new IllegalArgumentException(errMsg)
    }
  }
}

问题是,每当我尝试传递整数参数(从控制台或文本文件中读取)时,checkTypes程序都会失败并显示以下消息:java.lang.IllegalArgumentException: Incompatible argument type for [1]. Expected: int. Found: java.lang.Integer.

我正在转换整数参数,Integer.parseInt(t).asInstanceOf[Int]并且规则需要两个类型的参数Int

那么,有没有更有效的方法在运行时检查参数类型?

或者

我如何转换StringInt真实的?

提前致谢。


作为一个最小的工作示例,这是 Scala REPL 中引发异常的会话:

scala> val argTypes: Seq[Class[_]] = Seq(classOf[Int], classOf[Int])
argTypes: Seq[Class[_]] = List(int, int)

scala> def checkTypes(args: Seq[Any]) {
     |   if (argTypes.size != args.size) {
     |     val msg = "Number of arguments (%d) does not match expected number (%d)."
     |     throw new IllegalArgumentException(msg.format(args.size, argTypes.size))
     |   }
     |   val err = "Incompatible argument type for [%s]. Expected: %s. Found: %s."
     |   for (i <- 0 until argTypes.size) {
     |     val formalClass = argTypes(i)
     |     val arg = args(i)
     |     val actualClass = arg.asInstanceOf[AnyRef].getClass
     |     if (!(formalClass isAssignableFrom actualClass)) {
     |       val errMsg = err.format(arg, formalClass.getName, actualClass.getName)
     |       throw new IllegalArgumentException(errMsg)
     |     }
     |   }
     | }
checkTypes: (args: Seq[Any])Unit

scala> val args: Seq[Any] = Seq("1".toInt, "2".toInt)
args: Seq[Any] = List(1, 2)

scala> checkTypes(args)
java.lang.IllegalArgumentException: Incompatible argument type for [1]. Expected: int. Found: java.lang.Integer.
    at $anonfun$checkTypes$1.apply$mcVI$sp(<console>:20)
    at scala.collection.immutable.Range.foreach$mVc$sp(Range.scala:78)
    at .checkTypes(<console>:14)
    at .<init>(<console>:11)
    at .<clinit>(<console>)
    at .<init>(<console>:11)
    at .<clinit>(<console>)
    at $print(<console>)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:616)
    at scala.tools.nsc.interpreter.IMain$ReadEvalPrint.call(IMain.scala:704)
    at scala.tools.nsc.interpreter.IMain$Request$$anonfun$14.apply(IMain.scala:920)
    at scala.tools.nsc.interpreter.Line$$anonfun$1.apply$mcV$sp(Line.scala:43)
    at scala.tools.nsc.io.package$$anon$2.run(package.scala:25)
    at java.lang.Thread.run(Thread.java:679)
4

1 回答 1

2

java.lang.Integer装箱类型 ( ) 和未装箱类型 ( scala.Int== java )不匹配int。实际实例是装箱的,但您正在针对原始 classOf 对其进行测试。

下面是一个当原语被装箱时发生的例子:

scala> 5.getClass
res0: Class[Int] = int

scala> (5: Any)
res1: Any = 5

scala> res1.getClass
res2: Class[_] = class java.lang.Integer

请注意,如果您进行模式匹配Any并获得一个原语,它实际上会挑选出装箱的副本并为您拆箱。

scala> res1 match { case i: Int => println(i); case _ => }
5

既然你知道你必须被装箱,给定你写的代码,你也可以只检查Integer而不是Int(即使用classOf[Integer])。

于 2013-02-25T00:13:03.407 回答