java.lang.Class.getComponentType()方法

描述

java.lang.Class.getComponentType() 方法返回类的组件类型的数组。如果这个类并不代表一个数组类,此方法返回null。

声明

以下是声明java.lang.Class.getComponentType()方法

public Class<?> getComponentType()

参数

  • NA

返回值

此方法返回的类,这个类,如果这个类是一个数组组件类型。

异常

  • NA

实例

下面的例子说明了如何使用java.lang.Class.getComponentType()方法。

package com.yiibai;

import java.lang.*;

public class ClassDemo {

   public static void main(String[] args) {

     String[] arr = new String[] {"admin"};

     // returns the Class representing the component type
     Class arrClass = arr.getClass();
     Class componentType = arrClass.getComponentType();
     if (componentType != null) {
        System.out.println("ComponentType = " + componentType.getName());
     }
     else {
        System.out.println("ComponentType is null");
     }
   }
} 

让我们来编译和运行上面的程序,这将产生以下结果:

ComponentType = java.lang.String

转载:http://www.yiibai.com/javalang/class_getcomponenttype.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值