将 null 转换为 class 的 JRuby 等价物
JRuby equivalent for casting null to class
我尝试通过 JRuby 使用 Java weka 机器学习库。到目前为止一切正常,我只有一件事想知道:
为了创建 string 属性,您可以使用与 nominal 属性相同的构造函数 Java,但是第二个参数是一个 null 转换为 FastVector:
Attribute attribute = new Attribute("name", (FastVector) null);
另见 this Whosebug post and the weka doc for Attribute。
在 JRuby 中,如果您尝试只传递 nil
,例如:
java_import 'weka.core.Attribute'
attribute = Attribute.new('name', nil)
它会引发 Java::JavaLang::NullPointerException
错误。
完整的堆栈跟踪是:
Java::JavaLang::NullPointerException:
from weka.core.Attribute.<init>(weka/core/Attribute.java:303)
from weka.core.Attribute.<init>(weka/core/Attribute.java:290)
from java.lang.reflect.Constructor.newInstance(java/lang/reflect/Constructor.java:423)
from RUBY.<eval>((irb):7)
from org.jruby.RubyKernel.eval(org/jruby/RubyKernel.java:978)
from org.jruby.RubyKernel.loop(org/jruby/RubyKernel.java:1291)
from org.jruby.RubyKernel.catch(org/jruby/RubyKernel.java:1098)
from org.jruby.RubyKernel.catch(org/jruby/RubyKernel.java:1098)
from Users.pgoetze.$_dot_rvm.rubies.jruby_minus_9_dot_0_dot_1_dot_0.bin.irb.<top>(/Users/pgoetze/.rvm/rubies/jruby-9.0.1.0/bin/irb:13)
from java.lang.invoke.MethodHandle.invokeWithArguments(java/lang/invoke/MethodHandle.java:627)
有没有办法在 JRuby 中创建一个空向量,它可以作为第二个参数而不是 nil
传递?
如果没有,创建字符串属性的方法可能是什么?
与JRuby wiki states一样,您应该使用反射来获取对指定其参数类型的构造函数的引用。
java_import java.util.List
java_import weka.core.Attribute
#...
constructor = Attribute.java_class.declared_constructor(java.lang.String, java.util.List)
attribute = constructor.new_instance('name', nil)
备注:
weka.core.FastVector
只是 ArrayList
的扩展
weka.core.Attribute
包含 a constructor with single String
argument,这可能会实现您想要实现的目标
我尝试通过 JRuby 使用 Java weka 机器学习库。到目前为止一切正常,我只有一件事想知道:
为了创建 string 属性,您可以使用与 nominal 属性相同的构造函数 Java,但是第二个参数是一个 null 转换为 FastVector:
Attribute attribute = new Attribute("name", (FastVector) null);
另见 this Whosebug post and the weka doc for Attribute。
在 JRuby 中,如果您尝试只传递 nil
,例如:
java_import 'weka.core.Attribute'
attribute = Attribute.new('name', nil)
它会引发 Java::JavaLang::NullPointerException
错误。
完整的堆栈跟踪是:
Java::JavaLang::NullPointerException:
from weka.core.Attribute.<init>(weka/core/Attribute.java:303)
from weka.core.Attribute.<init>(weka/core/Attribute.java:290)
from java.lang.reflect.Constructor.newInstance(java/lang/reflect/Constructor.java:423)
from RUBY.<eval>((irb):7)
from org.jruby.RubyKernel.eval(org/jruby/RubyKernel.java:978)
from org.jruby.RubyKernel.loop(org/jruby/RubyKernel.java:1291)
from org.jruby.RubyKernel.catch(org/jruby/RubyKernel.java:1098)
from org.jruby.RubyKernel.catch(org/jruby/RubyKernel.java:1098)
from Users.pgoetze.$_dot_rvm.rubies.jruby_minus_9_dot_0_dot_1_dot_0.bin.irb.<top>(/Users/pgoetze/.rvm/rubies/jruby-9.0.1.0/bin/irb:13)
from java.lang.invoke.MethodHandle.invokeWithArguments(java/lang/invoke/MethodHandle.java:627)
有没有办法在 JRuby 中创建一个空向量,它可以作为第二个参数而不是 nil
传递?
如果没有,创建字符串属性的方法可能是什么?
与JRuby wiki states一样,您应该使用反射来获取对指定其参数类型的构造函数的引用。
java_import java.util.List
java_import weka.core.Attribute
#...
constructor = Attribute.java_class.declared_constructor(java.lang.String, java.util.List)
attribute = constructor.new_instance('name', nil)
备注:
weka.core.FastVector
只是ArrayList
的扩展
weka.core.Attribute
包含 a constructor with singleString
argument,这可能会实现您想要实现的目标