摘要:
## 介绍 - `java.lang.reflect.Member` - `public interface Member` - 成员:字段、方法、构造函数 ## API ### 常量 - PUBLIC - 所有公共成员的集合,包括继承的成员 - DECLARED - 已声明成员,不包括继承成员 # 阅读全文
摘要:
## 介绍 - `java.lang.reflect.Executable` - `public abstract sealed class Executable extends AccessibleObject implements Member, GenericDeclaration permi 阅读全文
摘要:
## 介绍 - `java.lang.reflect.AccessibleObject` - `public class AccessibleObject implements AnnotatedElement` - Field 、 Method和Constructor对象(称为反射对象)的基类 # 阅读全文
摘要:
## 介绍 - `java.lang.reflect.AnnotatedElement` - `public interface AnnotatedElement` - `getAnnotations()` 和 `getDeclaredAnnotations()` 方法返回的注解数组中,注解的顺序是 阅读全文
摘要:
## 介绍 - `java.lang.Class` - `public final class Class implements java.io.Serializable, GenericDeclaration, Type, AnnotatedElement, TypeDescriptor.OfFi 阅读全文
摘要:
## 介绍 - `java.lang.annotation.RetentionPolicy` - `public enum RetentionPolicy` - 注解保存策略 - 和 `@Retention` 元注解一起使用 - 只对声明此注解的代码元素的被注解声明有效 ## API ### enu 阅读全文
摘要:
## 介绍 - `java.lang.annotation.ElementType` - `public enum ElementType` - 可以配合 `@Target` 元注解使用 ## API ### enum - `TYPE` - 类、接口(包括注解接口)、枚举、记录 - `FIELD` 阅读全文
摘要:
## 介绍 - java.time.ZoneOffset - 类声明 ```java @jdk.internal.ValueBased public final class ZoneOffset extends ZoneId implements TemporalAccessor, Temporal 阅读全文
摘要:
## 介绍 - java.time.ZoneId - 类声明 ```java @jdk.internal.ValueBased public abstract class ZoneId implements Serializable ``` ## API ### 常量 - SHORT_IDS - 短 阅读全文
摘要:
## 介绍 - java.time.ZonedDateTime - 类声明 ```java @jdk.internal.ValueBased public final class ZonedDateTime implements Temporal, ChronoZonedDateTime, Seri 阅读全文