jreflection(rJava)
jreflection()所属R语言包:rJava
Simple helper functions for Java reflection
Java反射的简单的辅助功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
.jconstructors returns a character vector with all constructors for a given class or object. .jmethods returns a character vector with all methods for a given class or object. .jfields returns a character vector with all fileds (aka attributes) for a given class or object.
.jconstructors返回字符向量与某一类或对象的所有构造。 .jmethods返回一个字符向量与某一类或对象的所有方法。 .jfields返回字符向量与某一类或对象的所有个行业(即属性)。
用法----------Usage----------
.jconstructors(o, as.obj = FALSE)
.jmethods(o, name = NULL, as.obj = FALSE)
.jfields(o, name = NULL, as.obj = FALSE)
参数----------Arguments----------
参数:o
Name of a class (either notation is fine) or an object whose class will be queried
一类的名称(或者符号是罚款),或将查询对象的类
参数:name
Name of the method/field to look for. May contain regular expressions except for ^$.
寻找方法/字段的名称。除了^$可能包含正则表达式。
参数:as.obj
if TRUE then a list of Java objects is returned, otherwise a character vector (obtained by calling toString() on each entry).
如果TRUE然后返回Java对象名单,否则特征向量(通过调用toString()每个条目中获得)。
Details
详情----------Details----------
There first two functions are intended to help with finding correct signatures for methods and constructors. Since the low-level API in rJava doesn't use reflection automatically, it is necessary to provide a proper signature. That is somewhat easier using the above methods.
有前两个功能是为了帮助找到正确的方法和构造签名。由于在低级别的API rJava不使用自动反射,它是必要的,以提供适当的签名。这是比较容易使用上述方法。
值----------Value----------
Returns a character vector (if as.obj is FALSE) or a list of Java objects. Each entry corresponds to the Constructor resp. Method resp. Field object.
返回一个特征向量(as.obj如果是FALSE)或Java对象名单。每个条目对应的ConstructorRESP。 MethodRESP。 Field对象。
参见----------See Also----------
.jcall, .jnew, .jcast or $,jobjRef-method
.jcall,.jnew,.jcast或$,jobjRef-method
举例----------Examples----------
## Not run: [#无法运行:]
.jconstructors("java/util/Vector")
v <- .jnew("java/util/Vector")
.jmethods(v, "add")
## End(Not run)[#结束(不运行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|