本文整理了Java中weka.core.Utils.getArrayClass()
方法的一些代码示例,展示了Utils.getArrayClass()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Utils.getArrayClass()
方法的具体详情如下:
包路径:weka.core.Utils
类名称:Utils
方法名:getArrayClass
[英]Returns the basic class of an array class (handles multi-dimensional arrays).
[中]返回数组类的基本类(处理多维数组)。
代码示例来源:origin: nz.ac.waikato.cms.weka/weka-stable
/**
* Returns the basic class of an array class (handles multi-dimensional
* arrays).
*
* @param c the array to inspect
* @return the class of the innermost elements
*/
public static Class<?> getArrayClass(Class<?> c) {
if (c.getComponentType().isArray()) {
return getArrayClass(c.getComponentType());
} else {
return c.getComponentType();
}
}
代码示例来源:origin: Waikato/weka-trunk
/**
* Returns the basic class of an array class (handles multi-dimensional
* arrays).
*
* @param c the array to inspect
* @return the class of the innermost elements
*/
public static Class<?> getArrayClass(Class<?> c) {
if (c.getComponentType().isArray()) {
return getArrayClass(c.getComponentType());
} else {
return c.getComponentType();
}
}
代码示例来源:origin: nz.ac.waikato.cms.weka/weka-stable
classname = Utils.getArrayClass(o.getClass()).getName();
primitive = isPrimitiveArray(o.getClass());
} else {
代码示例来源:origin: Waikato/weka-trunk
classname = Utils.getArrayClass(o.getClass()).getName();
primitive = isPrimitiveArray(o.getClass());
} else {
内容来源于网络,如有侵权,请联系作者删除!