當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Modifier isInterface(mod)用法及代碼示例


java.lang.reflect.Modifier的isInterface(mod)方法用於檢查integer參數是否包含接口修飾符。如果此整數參數表示接口類型Modifier,則方法返回true,否則返回false。

用法:

public static boolean isInterface(int mod)

參數:此方法接受整數名稱,因為mod代表一組修飾符。


返回:如果mod包含interface修飾符,則此方法返回true;否則,此方法返回true。否則為假。

以下示例程序旨在說明isInterface()方法:
示例1:

// Java program to illustrate isInterface() method 
  
import java.lang.reflect.Modifier; 
  
public class GFG { 
  
    public static void main(String[] args) 
        throws NoSuchFieldException 
    { 
  
        // get Modifier Integer value 
        int mod = Symbols.class.getModifiers(); 
  
        // check Modifier is interface or not 
        boolean result = Modifier.isInterface(mod); 
  
        System.out.println("Mod integer value "
                           + mod + " is interface : "
                           + result); 
    } 
  
    interface Symbols { 
        void createSynbols(); 
    } 
}
輸出:
Mod integer value 1544 is interface : true

示例2:

// Java program to illustrate isInterface() 
  
import java.lang.reflect.Modifier; 
  
public class GFG { 
  
    public static void main(String[] args) 
        throws NoSuchFieldException 
    { 
  
        // get Modifier Integer value 
        int mod = Calculator.class.getModifiers(); 
  
        // check Modifier is Interface or not 
        boolean result = Modifier.isInterface(mod); 
  
        System.out.println("Mod integer value "
                           + mod + " is Interface : "
                           + result); 
    } 
  
    abstract class Calculator { 
        abstract void addNumbers(); 
    } 
}
輸出:
Mod integer value 1024 is Interface : false

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#isInterface(int)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Modifier isInterface(mod) method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。