ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

【java高级程序设计】核心类(获取类)||自食用

2021-09-26 19:00:17  阅读:155  来源: 互联网

标签:java System class Person 食用 println 程序设计 Class out


 汇总代码:

package people;

import java.util.Arrays;
import java.util.List;

import customLoader.FileSystemClassLoader;

/** 
 * @author: pyu
 * @Date: 2021/09/26
 */

public class Bootstrap {
    public static void main(String[] args) {
    	
    	//.class方法
    	System.out.println(".class方法");
    	Class<Person> clazz1 = Person.class; //拿类Person
    	Class<Bootstrap> clazz2 = Bootstrap.class; //拿本类Bootstrap
    	Class<FileSystemClassLoader> clazz3 = FileSystemClassLoader.class;
    	Class<TestInterf> clazz4 = TestInterf.class; //接口测试
    	System.out.println(clazz1.getCanonicalName()); //拿规范化名称
    	System.out.println(clazz2.getCanonicalName()); 
    	System.out.println(clazz3.getCanonicalName());
    	System.out.println(clazz4.getCanonicalName());
    	
    	//getClass()方法
    	System.out.println("getClass()方法");
    	List<Person> Persons = Arrays.asList(new Teacher(),new Student(),new Teacher(),new Person()); 
    	for(Person Person:Persons) {
    		if(Person.getClass().equals(Teacher.class)) { //若是Teacher则输出
    			Person.speak("I am a teacher");
    		}
    	}
    	
    	//forName()方法
    	System.out.println("forName()方法");
    	String className = "customLoader.Sample";
    	try {
    	Class<?> clazz = Class.forName(className);
    	System.out.println(clazz1.getCanonicalName()); //拿规范化名称
    	}catch(ClassNotFoundException e) {
    		e.printStackTrace();
    	}
    }
}

 

.class方法
people.Person
people.Bootstrap
customLoader.FileSystemClassLoader
people.TestInterf
getClass()方法
I am a teacher
I am a teacher
forName()方法
people.Person

 

目录

一、Class类

1. 通过.class属性获取类

 代码:

2. getClass()方法

代码: 

3. forName() 获取

代码: 


一、Class类

1. 通过.class属性获取类

 代码:

package people;

import customLoader.FileSystemClassLoader;

/** 
 * @author: pyu
 * @Date: 2021/09/26
 */

public class Bootstrap {
    public static void main(String[] args) {
    	Class<Person> clazz1 = Person.class; //拿类Person
    	Class<Bootstrap> clazz2 = Bootstrap.class; //拿本类Bootstrap
    	Class<FileSystemClassLoader> clazz3 = FileSystemClassLoader.class;
    	Class<TestInterf> clazz4 = TestInterf.class; //接口测试
    	System.out.println(clazz1.getCanonicalName()); //拿规范化名称
    	System.out.println(clazz2.getCanonicalName()); 
    	System.out.println(clazz3.getCanonicalName());
    	System.out.println(clazz4.getCanonicalName());
    }
}

 so.. 接口、本类也可以通过.class方法获取

2. getClass()方法

代码: 

package people;

import java.util.Arrays;
import java.util.List;
import customLoader.FileSystemClassLoader;

/** 
 * @author: pyu
 * @Date: 2021/09/26
 */

public class Bootstrap {
    public static void main(String[] args) {
    	//创建列表
    	List<Person> Persons = Arrays.asList(new Teacher(),new Student(),new Teacher(),new Person()); 
    	for(Person Person:Persons) {
    		if(Person.getClass().equals(Teacher.class)) { //若是Teacher则输出
    			Person.speak("I am a teacher");
    		}
    	}
    }
}
I am a teacher
I am a teacher

3. forName() 获取

代码: 

package people;

import customLoader.FileSystemClassLoader;

/** 
 * @author: pyu
 * @Date: 2021/09/26
 */

public class Bootstrap {
    public static void main(String[] args) {
    	String className = "customLoader.Sample";
    	try {
    	Class<?> clazz1 = Class.forName(className);
    	System.out.println(clazz1.getCanonicalName()); //拿规范化名称
    	}catch(ClassNotFoundException e) {
    		e.printStackTrace();
    	}
    }
}
customLoader.Sample

标签:java,System,class,Person,食用,println,程序设计,Class,out
来源: https://blog.csdn.net/weixin_51159944/article/details/120492804

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有