java命名空间javax.management.openmbean类arraytype<t>的类成员方法:
getarraytype定义及介绍
本文导语:
getarraytype
public static arraytype getarraytype(opentype elementtype)
throws opendataexception
以类型安全的方式创建一个 arraytype 实例。
根据需要多次调用此方法可以创建多维数组。
使用相同的参数调用此方法两...
getarraytype
public static arraytype getarraytype(opentype elementtype)
throws opendataexception
- 以类型安全的方式创建一个
arraytype
实例。
根据需要多次调用此方法可以创建多维数组。
使用相同的参数调用此方法两次可以返回相同的对象,或者相等但不同的两个对象。
例如,以下代码片段:
arraytype t1 = arraytype.getarraytype(simpletype.string);
arraytype t2 = arraytype.getarraytype(t1);
arraytype t3 = arraytype.getarraytype(t2);
system.out.println("array class name = " + t3.getclassname());
system.out.println("element class name = " + t3.getelementopentype().getclassname());
system.out.println("array type name = " + t3.gettypename());
system.out.println("array type description = " + t3.getdescription());
将得到以下输出:
array class name = [[[ljava.lang.string;
element class name = java.lang.string
array type name = [[[ljava.lang.string;
array type description = 3-dimension array of java.lang.string
- 参数:
elementtype
- 此 arraytype 实例描述的数组中包含的元素值的开放类型;必须是 simpletype、compositetype、tabulartype 的一个实例,或者另一个以 simpletype、compositetype 或 tabulartype 作为其 elementtype 的 arraytype。
- 抛出:
opendataexception
- 如果 elementtype 的 classname 不是一个受允许的开放数据 java 类名称。- 从以下版本开始:
- 1.6