Java反射 Class类

Class类的实例表示正在运行的Java应用程序中的类和接口。它是Java反射的基础,对任何一个类,首先产生一个Class对象,然后才通过class类获得其他的信息。

获取class类对象方式:

  • 通过Object类提供的getClass()方法获得Class类对象。

    Object obj = new Object();//创建Object类对象
    Class c1 = obj.getClass();//调用Object类的getClass()方法获得Class类对象
    
  • 通过Class类的静态方法forName()获取字符串参数指定的Class类对象。

    Class c2 = Class.forName("java.lang.Integer");//参数必须是类或接口的全名,包含类名和包名,并注意捕获ClassNotFoundException异常
    
  • 通过类名.class获取该类的Class对象

    Class c3 = Integer.class;  
    

Class类常用方法:

  1. getPackage(),返回此类的包,返回类型:package。
  2. getModifiers(),返回此类的Java语言修饰符,返回类型:int。 修饰符由Java虚拟机的常数为publicprotectedprivatefinalstaticabstractinterface ; 应使用Modifier类的方法进行解码。
  3. getName(),返回此类的全名,返回类型:String。
  4. getDeclaredFields(),返回此类的所有字段,返回类型:Field[]
  5. getDeclaredConstructors(),返回此类的所有构造方法,返回类型getDeclaredConstructors[]
import java.lang.reflect.*;public class ClassTest {public static void main(String args[]) {try {//返回指定字符串的类或接口的Class对象Class c = Class.forName("java.util.Date");Package p = c.getPackage();//返回此类的包String pname = p.getName();System.out.println("Data 类包信息:" + p);//读取类包信息。输出:Data 类包信息:package java.util, Java Platform API Specification, version 1.8System.out.println("Data 类包名" + pname);//读取此类的包名。输出:Data 类包名java.utilint m = c.getModifiers();//获取类的修饰符String str = Modifier.toString(m);System.out.println("Data 类修饰符:" + str);//输出:Data 类修饰符:publicSystem.out.println("Data 类名" + c.getName());//获取类名。输出:Data 类名java.util.Date//获取Data类的字段。Field[] f = c.getDeclaredFields();System.out.println("---循环输出Data类的字段名---");for(Field field : f) {System.out.print(field.getName() + " ");}//输出:gcal jcal fastTime cdate defaultCenturyStart serialVersionUID wtb ttb System.out.println();//获取类的构造方法Constructor[] con = c.getDeclaredConstructors();System.out.println("---循环输出Data类的构造方法信息---");for(Constructor cc : con) {System.out.println(cc.getName() + "的修饰符:" + Modifier.toString(cc.getModifiers()));Parameter[] ps = cc.getParameters();System.out.println(cc.getName() + "的参数: ");for(Parameter pp : ps) {System.out.print(pp.getName() + " ");}System.out.println();}}catch(ClassNotFoundException e) {e.printStackTrace();}}
}
/**
Data 类包信息:package java.util, Java Platform API Specification, version 1.8
Data 类包名java.util
Data 类修饰符:public
Data 类名java.util.Date
---循环输出Data类的字段名---
gcal jcal fastTime cdate defaultCenturyStart serialVersionUID wtb ttb 
---循环输出Data类的构造方法信息---
java.util.Date的修饰符:public
java.util.Date的参数: 
arg0 arg1 arg2 arg3 arg4 arg5 
java.util.Date的修饰符:public
java.util.Date的参数: 
arg0 
java.util.Date的修饰符:public
java.util.Date的参数: java.util.Date的修饰符:public
java.util.Date的参数: 
arg0 
java.util.Date的修饰符:public
java.util.Date的参数: 
arg0 arg1 arg2 
java.util.Date的修饰符:public
java.util.Date的参数: 
arg0 arg1 arg2 arg3 arg4 
*/

然后我们对比Data的源码中的字段和构造函数,可以发现通过反射的getDeclaredConstructors()可以判断Data源码六个构造函数,再查看源码,果然有六个构造函数。

public class Dateimplements java.io.Serializable, Cloneable, Comparable<Date>
{private static final BaseCalendar gcal =CalendarSystem.getGregorianCalendar();private static BaseCalendar jcal;private transient long fastTime;/** If cdate is null, then fastTime indicates the time in millis.* If cdate.isNormalized() is true, then fastTime and cdate are in* synch. Otherwise, fastTime is ignored, and cdate indicates the* time.*/private transient BaseCalendar.Date cdate;// Initialized just before the value is used. See parse().private static int defaultCenturyStart;/* use serialVersionUID from modified java.util.Date for* interoperability with JDK1.1. The Date was modified to write* and read only the UTC time.*/private static final long serialVersionUID = 7523967970034938905L;/*** Allocates a <code>Date</code> object and initializes it so that* it represents the time at which it was allocated, measured to the* nearest millisecond.** @see     java.lang.System#currentTimeMillis()*/public Date() {this(System.currentTimeMillis());}/*** Allocates a <code>Date</code> object and initializes it to* represent the specified number of milliseconds since the* standard base time known as "the epoch", namely January 1,* 1970, 00:00:00 GMT.** @param   date   the milliseconds since January 1, 1970, 00:00:00 GMT.* @see     java.lang.System#currentTimeMillis()*/public Date(long date) {fastTime = date;}/*** Allocates a <code>Date</code> object and initializes it so that* it represents midnight, local time, at the beginning of the day* specified by the <code>year</code>, <code>month</code>, and* <code>date</code> arguments.** @param   year    the year minus 1900.* @param   month   the month between 0-11.* @param   date    the day of the month between 1-31.* @see     java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(year + 1900, month, date)</code>* or <code>GregorianCalendar(year + 1900, month, date)</code>.*/@Deprecatedpublic Date(int year, int month, int date) {this(year, month, date, 0, 0, 0);}/*** Allocates a <code>Date</code> object and initializes it so that* it represents the instant at the start of the minute specified by* the <code>year</code>, <code>month</code>, <code>date</code>,* <code>hrs</code>, and <code>min</code> arguments, in the local* time zone.** @param   year    the year minus 1900.* @param   month   the month between 0-11.* @param   date    the day of the month between 1-31.* @param   hrs     the hours between 0-23.* @param   min     the minutes between 0-59.* @see     java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(year + 1900, month, date,* hrs, min)</code> or <code>GregorianCalendar(year + 1900,* month, date, hrs, min)</code>.*/@Deprecatedpublic Date(int year, int month, int date, int hrs, int min) {this(year, month, date, hrs, min, 0);}/*** Allocates a <code>Date</code> object and initializes it so that* it represents the instant at the start of the second specified* by the <code>year</code>, <code>month</code>, <code>date</code>,* <code>hrs</code>, <code>min</code>, and <code>sec</code> arguments,* in the local time zone.** @param   year    the year minus 1900.* @param   month   the month between 0-11.* @param   date    the day of the month between 1-31.* @param   hrs     the hours between 0-23.* @param   min     the minutes between 0-59.* @param   sec     the seconds between 0-59.* @see     java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(year + 1900, month, date,* hrs, min, sec)</code> or <code>GregorianCalendar(year + 1900,* month, date, hrs, min, sec)</code>.*/@Deprecatedpublic Date(int year, int month, int date, int hrs, int min, int sec) {int y = year + 1900;// month is 0-based. So we have to normalize month to support Long.MAX_VALUE.if (month >= 12) {y += month / 12;month %= 12;} else if (month < 0) {y += CalendarUtils.floorDivide(month, 12);month = CalendarUtils.mod(month, 12);}BaseCalendar cal = getCalendarSystem(y);cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.getDefaultRef());cdate.setNormalizedDate(y, month + 1, date).setTimeOfDay(hrs, min, sec, 0);getTimeImpl();cdate = null;}/*** Allocates a <code>Date</code> object and initializes it so that* it represents the date and time indicated by the string* <code>s</code>, which is interpreted as if by the* {@link Date#parse} method.** @param   s   a string representation of the date.* @see     java.text.DateFormat* @see     java.util.Date#parse(java.lang.String)* @deprecated As of JDK version 1.1,* replaced by <code>DateFormat.parse(String s)</code>.*/@Deprecatedpublic Date(String s) {this(parse(s));}//以下省略//。。。。。。。。。。。。。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/560453.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

php数字从大到小生成,php输入几个数从大到小排序的案例

php输入几个数从大到小排序的案例发布时间&#xff1a;2020-10-28 11:53:20来源&#xff1a;亿速云阅读&#xff1a;66作者&#xff1a;小新php输入几个数从大到小排序的案例&#xff1f;这个问题可能是我们日常学习或工作经常见到的。希望通过这个问题能让你收获颇深。下面是小…

Java反射 Constructor类

Java反射 Constructor类 Java通过反射可以获取构造方法&#xff0c;和使用构造方法创造对象。 在网上找了一个比较好理解的例子来弄清楚Constructor类。 public Constructor getConstructor()// 公共构造方法对象 public Constructor[] getConstructors()//所有公共构造方法…

mysql hammerdb,[料理佳餚] 用 HammerDB 來執行資料庫 TPC-C 效能量測

TPC-C 模擬的情境TPC-C 模擬的情境是一個大型的商品批發商&#xff0c;擁有若干個倉庫&#xff0c;每個倉庫擁有 100000 件商品庫存、負責為 10 個地區供貨&#xff0c;每個地區服務 3000 名客戶&#xff0c;每名客戶平均一筆訂單有 10 項商品&#xff0c;所有訂單中約 1% 在其…

使用Linux进行c或c++编程

使用Linux进行C或c语言编程 1.创建名为 HelloWorld 的 c 或者 c 文件 vim HelloWorld.c vim Helloworld.cpp2.然后就进入文本编辑界面 输入i&#xff0c;进入编辑模式。写代码。按esc键&#xff0c;进入命令模式&#xff0c;输入:wq保存并退出文本编辑器。然后可以看见对应位…

如何用php写表单中的年月日,php写的日历程序 - adamboy的个人页面 - OSCHINA - 中文开源技术交流社区...

$weekArr array(Sun,Mon,Tue,Wed,Thu,Fri,Sat);//获取空格&#xff1a;//echo date("D",strtotime("2012-02-07"));function getSpace($month,$year){global $weekArr;if(!$year){$year date("Y");}$firstDay date("D",strtotime($…

Java反射 field

Java反射 field 获取字节码文件对象 Class c Class.forName(“fieldtest.Student”); 通过无参构造方法创建对象obj Constructor con c.getConstructor(); Object obj con.newInstance(); 通过成员变量名,获取单个的成员变量 Field nameField c.getField("name"…

mysql5.7循环,python3.4用循环往mysql5.7中写数据并输出的实现方法

python3.4用循环往mysql5.7中写数据并输出的实现方法来源&#xff1a;中文源码网 浏览&#xff1a; 次 日期&#xff1a;2018年9月2日python3.4用循环往mysql5.7中写数据并输出的实现方法 如下所示&#xff1a;#!/usr/bin/env python# -*- coding:utf-8 -*-# __author__ …

java反射 Method

java反射 Method 获取字节码文件对象 Class c Class.forName("fieldtest.Student");通过无参构造方法创建对象obj Constructor con c.getConstructor(); Object obj con.newInstance();Method m1 c.getMethod(“study”);获取study方法 m1.invoke(obj);使用obj对…

axure 鼠标变成手,Axure教程|鼠标移入移出自动显示与隐藏三级菜单

前几天因工作需要做一个鼠标移入显示隐藏菜单&#xff0c;鼠标移出自动隐藏菜单&#xff0c;做的时候觉得没有什么问题&#xff0c;做完后预览就发现一个很严重的问题&#xff0c;就是鼠标移出一级菜单向二级菜单时二级菜单不显示&#xff0c;或者二级菜单显示三级菜单不显示。…

java与平台无关的原因

Java字节码 Java源程序&#xff08;.java&#xff09;要先编译成与平台无关的字节码文件(.class)&#xff0c;然后字节码文件再解释成机器码运行。解释是通过Java虚拟机来执行的。 java要运行要经过如下步骤 ① Java源文件—->编译器&#xff08;工具&#xff09;—->…

php websocket应用实例,php使用websocket示例详解

下面我画了一个图演示 client 和 server 之间建立 websocket 连接时握手部分&#xff0c;这个部分在 node 中可以十分轻松的完成&#xff0c;因为 node 提供的 net 模块已经对 socket 套接字做了封装处理&#xff0c;开发者使用的时候只需要考虑数据的交互而不用处理连接的建立…

Java集合 Collection

Jdk提供了一些特殊的类&#xff0c;用来保存数量不确定的对象&#xff0c;存储任意类型对象&#xff0c;长度可变。这些类统称为集合。 集合类位于Java.util包中&#xff0c;按存储结构分为Collection单列集合和Map双列集合。 Collection是单列集合的根接口&#xff0c;有两个…

java basic data type,java基本数据类型--Basic Datatypes

Variables are nothing but reserved memory locations to store values. This means that when you create a variable you reserve some space in the memory.---说的好有道理Based on the data type of a variable, the operating system allocates memory and decides what…

Java final修饰符的作用,Java中的final修饰符

1.什么时候可以选择final修饰符如果想让一个类不被其他类继承&#xff0c;不允许在有子类&#xff0c;这时候就要考虑用到final来修饰。2.用final修饰的类首先大家要明白&#xff0c;用final修饰的类是不能被继承的&#xff0c;下面来看一个错误案例。eg&#xff1a;final clas…

Java基础 HashMap的添加 修改 遍历 Map.Entry Map.entrySet()的使用及实例

Java Map Map中不能包含相同的键&#xff0c;每个键只能映射一个值。 HashMap&#xff1a;并不能保证它的元素的顺序&#xff0c;元素加入散列映射的顺序并不一定是它们被迭代方法读出的顺序。 Map.Entry Map.Entry 是Map中的一个接口&#xff0c;他的用途是表示一个映射项…

adminer.php下载,Adminer.php

Adminer.php就是原来的phpMinAdmin&#xff0c;这是用PHP编写的数据库管理工具&#xff0c;支持mysql、mariadb、postgresql、sqlite、MS SQL、Oracle等多种数据库&#xff0c;虽然是一个源码&#xff0c;但是可以使用用户们和密码直接连接到数据库的服务器&#xff0c;既可以对…

windows下如何在命令行里切换到任意目录

切换到C盘中的某个文件夹&#xff0c;比如AppData&#xff0c;可以执行命令cd AppData; 但如果想切换到D盘&#xff0c;输入cd d:是不行的; 如果我们要切换盘符的目录&#xff0c;正确的用法是在cd 和路径中间 增加一个“/d”&#xff0c;如cd /d d: 也可以不用cd指令&#x…

Java基础 系统注解 @Override @Deprecated @SuppressWarnings 使用的方法及原因

Java 系统注解 为什么用&#xff1f;&#xff1a; 好处&#xff1a;使用系统定义的注解&#xff0c;可以在编译时对程序进行检查。 注解用在包、类、字段、方法、局部变量、方法参数等的前面&#xff0c;对这些元素进行说明和注释。 Override Override用来修饰一个方法&am…

java二维数组排序先行后列,数组知识点归纳

◆◆◆一、理解一维数组的定义和应用&#xff0c;了解二维数组和控件数组&#xff1b;1、数组的概念&#xff1a;数组并不是一种数据类型&#xff0c;而是一组相同类型数据的集合。用一个统一的名字(数组名)代表逻辑上相关的一批数据&#xff0c;每个元素用下标变量来区分&…

Java 使用反射处理注解

Java 使用反射处理注解 自定义注解的格式&#xff1a; [public|final] interface 注解名//interface 表明&#xff1a;这是一个自定义注解 {注解元素//注解元素 是无参数的方法 }// 注解元素的格式&#xff1a; 数据类型 注解元素名() [default 默认值]例子&#xff1a; //自…