scala で Java のリフレクション API を使用しようとしています。ClassLoader を使用してバイトコードからロードされた KDTree クラスがあります。メソッドは次のとおりです。
public class KDTree
{
public KDTree(int k)
public void insert(double[] key, Object value) throws Exception
public Object[] range(double[] lowk, double[] uppk) throws Exception
}
そして、ここに私のラッパーscalaクラスがあります:
class KDTree( dimentions: Int )
//wrapper!
{
private val kd= Loader.loadClass("KDTree")
private val constructor= kd.getConstructor(java.lang.Class.forName("java.lang.Integer"))
val wrapped= constructor.newInstance("1")
def insert( key:Array[Double], element:Object)=
kd.getDeclaredMethod("insert", classOf[Array[Double]])
.invoke(key, element)
def range( lowkey:Array[Double], highkey:Array[Double])=
kd.getDeclaredMethod("range", classOf[Array[Double]])
.invoke(lowkey, highkey)
}
初期化しようとすると、エラーが発生します。
java.lang.NoSuchMethodException: KDTree.<init>(java.lang.Integer)
ただし、コンストラクターの唯一の引数は実際には整数です!
また、java.lang.Integer.class
scala は次の構文に文句を言うので、単純に を実行することはできません。error: identifier expected but 'class' found.
誰にもヒントはありますか?
編集 誰かがそれを使用している場合に備えて、これが私の完成したコードです:
class KDTreeWrapper[T]( dimentions: Int )
{
private val kd= Loader.loadClass("KDTree")
private val constructor= kd.getConstructor(classOf[Int])
private val wrapped= constructor.newInstance(dimentions:java.lang.Integer)
.asInstanceOf[Object]
private val insert_method= kd.
getMethod("insert", classOf[Array[Double]], classOf[Object])
private val range_method=
kd.getMethod("range", classOf[Array[Double]], classOf[Array[Double]])
def insert( key:Iterable[Double], element:T)=
insert_method.invoke(wrapped, key.toArray, element.
asInstanceOf[Object])
def range( lowkey:Iterable[Double], highkey:Iterable[Double]):Array[T]=
range_method.invoke(wrapped, lowkey.toArray, highkey.toArray).
asInstanceOf[Array[T]]
}