java.lang.reflect.Modifier的isStatic(mod)方法用於檢查integer參數是否包含static修飾符。如果此整數參數表示靜態類型修飾符,則方法返回true,否則返回false。
用法:
public static boolean isStatic(int mod)
參數:此方法接受整數名稱,因為mod代表一組修飾符。
返回:如果mod包含static修飾符,則此方法返回true;否則,此方法返回true。否則為假。
以下示例程序旨在說明isStatic()方法:
示例1:
// Java program to illustrate isStatic() method
import java.lang.reflect.*;
public class GFG {
// create a String Field
static String string;
public static void main(String[] args)
throws NoSuchFieldException,
SecurityException
{
// get Field class object
Field field
= GFG.class
.getDeclaredField("string");
// get Modifier Integer value
int mod = field.getModifiers();
// check Modifier is static or not
boolean result = Modifier.isStatic(mod);
System.out.println("Mod integer value "
+ mod + " is static : "
+ result);
}
}
輸出:
Mod integer value 8 is static : true
示例2:
// Java program to illustrate isStatic()
import java.lang.reflect.*;
public class GFG {
public static void main(String[] args)
{
// get Method class object
Method[] methods
= Shape.class.getMethods();
// get Modifier Integer value
int mod = methods[0].getModifiers();
// check Modifier is static or not
boolean result
= Modifier.isStatic(mod);
System.out.println("Mod integer value "
+ mod + " is static : "
+ result);
}
public static class Shape {
public static void createShape() {}
}
}
輸出:
Mod integer value 9 is static : true
參考文獻: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#isStatic(int)
相關用法
- Java Modifier isNative(mod)用法及代碼示例
- Java Modifier isAbstract(mod)用法及代碼示例
- Java Modifier isPublic(mod)用法及代碼示例
- Java Modifier isPrivate(mod)用法及代碼示例
- Java Modifier isStrict(mod)用法及代碼示例
- Java Modifier isSynchronized(mod)用法及代碼示例
- Java Modifier isVolatile(mod)用法及代碼示例
- Java Modifier isTransient(mod)用法及代碼示例
- Java Modifier isProtected(mod)用法及代碼示例
- Java Modifier isFinal(mod)用法及代碼示例
- Java Modifier isInterface(mod)用法及代碼示例
- Java Java lang.Long.numberOfTrailingZeros()用法及代碼示例
- Java Java.util.Collections.disjoint()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Modifier isStatic(mod) method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。