Table of Contents
Basic concepts
#To obtain information about a class, you first need to obtain the Class object of the class.
In Java, the Constructor class represents a constructor object.
In Java, the Field class represents a variable object.
1. Get the method object
In Java, use the Array class Represents an array object.
Home Java javaTutorial 08.Java Basics - Reflection

08.Java Basics - Reflection

Feb 27, 2017 am 10:35 AM


Basic concepts


##Java reflection mechanism allows us to )

Outside of the runtime (Runtime) Check the information of classes, interfaces, variables and methods. The functions of reflection are as follows:

For any class, you can know all the properties and methods of this class;
  • For any object, you can call any of its methods and properties.
Class

#To obtain information about a class, you first need to obtain the Class object of the class.

All types in Java include basic types (int, long, float, etc.), even arrays have Class objects associated with them.

    Get the object of the class
  • //1.在编译期获取类对象Class cls = Demo.class 
    
    //2.在运行期获取类对象(注意:需要包括完整的包名) Cllss clas = Class.forName("com.test.Demo")
    Copy after login

    Get the name of the class
  • Class cls = ...// 1.获取完整类型(包括包名)String className = cls.getName();
    // 2.获取简单类名 String simpleClassName =cls.getSimpleName();
    Copy after login

    Get the class modifier
  • Class cls = ...// 修饰符都被包装成一个 int 类型的数字,这样每个修饰符都是一个位标识(flag bit)    
    int modifiers  = cls.getModifiers();// 判断修饰符类型Modifier.isPublic( modifiers);
    Modifier.isProtected( modifiers);
    Modifier.isPrivate( modifiers);
    Modifier.isAbstract( modifiers);
    Modifier.isInterface( modifiers);
    Modifier.isFinal( modifiers);
    Modifier.isStatic( modifiers);
    Modifier.isNative( modifiers);
    Modifier.isStrict( modifiers);
    Modifier.isSynchronized( modifiers);
    Modifier.isTransient( modifiers);
    Modifier.isVolatile( modifiers);
    Copy after login

    Get the package information where the class is located
  • Class cls =...
    Package p = cls.getPackage();
    Copy after login

    Get the parent class that the class inherits
  • Class cls = ...
    Class superClass  = cls.getSuperclass();
    Copy after login

    Get the interface type implemented by the class
  • Class cls = ...// 类可以实现多个接口,因此返回的是接口数组Class [ ] interfaces = cls.getInterfaces();
    Copy after login

Constructor

In Java, the Constructor class represents a constructor object.

Get
    Public
  • Constructor method

    Class cls = ...// 1.获取所有构造函数Constructor[] constructors = cls.getConstructors(); 
    
    // 2.获取指定构造函数,不存在匹配则抛出异常。
    // 对应的构造函数入参类为 Person(String str, int i)Constructor constructor = 
        cls.getConstructor(new Class[]{String.class,int.class});
    Copy after login

    Get the input parameters of the constructor Type
  • Constructor constructor = ...
    // 因为构造函数的入参有多个,因此返回的数组Class [] paramterTypes = constructor.getParameterTypes();
    for(Class paramterType: paramterTypes ){    
    // do something...}
    Copy after login

    Constructor Instantiation Class
  • Class cls = ...
    Constructor constructor = cls.getConstructor(new Class[]{String.class});
    // Object[] 数组表示入参的具体值,需要与 Class[] 的入参类型完全匹配Demo demo = (Demo) constructor.newInstance(new Object[]{"hello"});
    Copy after login

Field

In Java, the Field class represents a variable object.

    Get all variables (public, non-public)
  • Class cls = ...// 1.获取所有公共变量Field[] fields = cls.getFields();
    // 2.获取所有非公共变量Field [] privateFields =cls.getDeclaredFields();
    Copy after login

    Get Specify variables (public, non-public)
  • Class cls = ...//入参为变量名称,名称不匹配则抛出异常// 获取指定公共变量Field field = cls.getField("num");
    // 获取指定非公共变量Field privateField = cls.getDeclaredField("str");
    Copy after login

    Manipulate variables
  • Class<?> cls = Demo.class;
    Demo demo = (Demo) cls.newInstance();// 1.1.公共方法的 setter、getterField field = cls.getField("num");
    field.set(demo, 1000);int filedValue  = (Integer) field.get(demo);// 2.1 非公共方法的 setter、getterField privateField = cls.getDeclaredField("str");
    privateField.setAccessible(true); // 关键 -> 操作之前,需要设置访问权限privateField.set(demo, "hello");
    String privateFieldValue = (String) privateField.get(demo);
    Copy after login

Method

1. Get the method object

    Get all methods
  • Class cls = ...// 1.获取所有公共方法(包括从父类继承而来的)Method[] methods = cls.getMethods();
    // 2.获取所有非公共方法(包括从父类继承而来的)Method [] privateMethods = cls.getDeclaredMethods();
    Copy after login

    Get the specified method
  • Class cls = ...// 1.获取指定公共方法,入参为:方法名、方法入参Method method = cls.getMethod("print", new Class[]{String.class});
    // 2.获取指定非公共方法,入参为:方法名、方法入参Method privateMethod = cls.getDeclaredMethod("say", new Class[]{int.class});
    Copy after login

    Get Parameter type of method
  • Method method = ...// 1.获取方法的所有入参类型Class [] paramterTypes = method.getParameterTypes();
    // 2.获取方法的返回值类型Class reeturnType = method.getReturnType();
    Copy after login

    Execution method
  • Class cls = Demo.class;
    Demo demo = (Demo) cls.newInstance();
    Method method = cls.getMethod("print", new Class[]{String.class});//1.执行公用方法,入参为:类实例,方法入参的具体值method.invoke(demo, "hello");
    //2.执行非公共方法Method privateMethod = 
        cls.getDeclaredMethod("print", new Class[]{String.class});
    privateMethod.setAccessible(true); // 关键 -> 操作之前,需要获得访问权限privateMethod.invoke(demo, "hello");
    Copy after login

    Judge getter/setter methods
  • public static boolean isGetter(Method method){    
    if(!method.getName().startsWith("get")){        
    return false;
        }    
        if(method.getParameterTypes().length !=0){        
        return false;
        }    
        if(void.class.equals(method.getReturnType())){        
        return false;
        }    
        return true;
    }
    public static boolean isSetter(Method method){    
    if(!method.getName().startsWith("set")){        
    return false;
        }    
        if(method.getParameterTypes().length !=1){        
        return false;
        }    
        return true;
    }
    Copy after login

Array

In Java, use the Array class Represents an array object.

    Get the array object
  • int [ ] intArray = ... 
    Class arrayCls = intArray.class;
    Copy after login

    Get the array member type
  • Class arrayCls = ...
    Class arrayComponentType =arrayCls .getComponentType();
    Copy after login

    Create array
  • // 创建一个数组,类型为 int ,容量为 3int [ ] intArray = (int[]) Array.newInstance(int.class, 3);
    //在 JVM 中字母I代表int类型,左边的‘[’代表我想要的是一个int类型的数组Class intArrayClass = Class.forName("[I");  
    
    //注意‘[L’的右边是类名,类名的右边是一个‘;’符号。这个的含义是一个指定类型的数组。
     stringArrayClass = Class.forName("[Ljava.lang.String;");
    Copy after login

    Add Array elements
  • int [ ] intArray = ...// 添加元素,数组为 intArray,位置为 0 ,值为 100Array.set(intArray, 0, 100);
    Array.set(intArray, 1, 200);
    System.out.println("intArray[0] = " + Array.get(intArray, 0));
    System.out.println("intArray[1] = " + Array.get(intArray, 1));
    Copy after login

    The above is the content of 08.Java Basics - Reflection. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Square Root in Java Square Root in Java Aug 30, 2024 pm 04:26 PM

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Random Number Generator in Java Random Number Generator in Java Aug 30, 2024 pm 04:27 PM

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Armstrong Number in Java Armstrong Number in Java Aug 30, 2024 pm 04:26 PM

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

See all articles