isInterface()
方法isInterface()方法在java.lang包中可用。
isInterface()方法用于检查此Class对象是否表示接口。
isInterface()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。
在检查Class是否声明为接口时,isInterface()方法不会引发异常。
语法:
public boolean isInterface();
参数:
它不接受任何参数。
返回值:
此方法的返回类型为boolean,它根据以下情况返回布尔值:
当此Class表示接口时,它返回true。
当此类不表示为接口时,它返回false。
示例
//Java程序演示示例 //类的布尔isInterface()方法的说明 public class IsInterfaceOfClass { public static void main(String[] args) { //创建并返回String类 String str = new String(); Class cl1 = str.getClass(); //创建并返回IsInstanceOfClass类 IsInterfaceOfClass ic = new IsInterfaceOfClass(); Class cl2 = ic.getClass(); //我们正在检查代表接口的类 boolean b1 = cl1.isInterface(); boolean b2 = cl2.isInterface(); System.out.print("Is" + " " + cl1.getSimpleName() + " "); System.out.println("denotes an interface" + ": " + b1); System.out.print("Is" + " " + cl2.getSimpleName() + " "); System.out.println("denotes an interface" + ": " + b2); } }
输出结果
Is String denotes an interface: false Is IsInterfaceOfClass denotes an interface: false