Java ClassLoader findSystemClass()方法与示例

ClassLoader类findSystemClass()方法 (ClassLoader Class findSystemClass() method)

  • findSystemClass() method is available in java.lang package.

    findSystemClass()方法在java.lang包中可用。

  • findSystemClass() method is used to find the class with the given binary name and load the class through the system loader if needed.

    findSystemClass()方法用于查找具有给定二进制名称的类,并在需要时通过系统加载器加载该类。

  • findSystemClass() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    findSystemClass()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • findSystemClass() method may throw an exception at the time of finding the class with the given class.

    在使用给定类查找类时, findSystemClass()方法可能会引发异常。

    ClassNotFoundException: This exception may throw when the given class does not exist.

    ClassNotFoundException :如果给定的类不存在,则可能引发此异常。

Syntax:

句法:

    protected Class findSystemClass(String class_name);

Parameter(s):

参数:

  • String class_name – represents the binary name of the class.

    字符串class_name –表示类的二进制名称。

Return value:

返回值:

The return type of this method is Class, it returns a Class object for the given class name.

该方法的返回类型为Class ,它返回给定类名的Class对象。

Example:

例:

// Java program to demonstrate the example 
// of Class findSystemClass(String class_name)
// method of ClassLoader
class FindSystemClass extends ClassLoader {
void loadedSystemClass() throws ClassNotFoundException {
// It checks whether the given class is loaded
// or not by using the findSystemClass()
Class cl1 = super.findSystemClass("java.lang.String");
// If cl1 not null that means cl1 is loaded
// then don't need to load again
if (cl1 != null)
System.out.println("Class already loaded!!!");
else
System.out.println("Ready to load the given class by using system classloader!!!");
}
}
public class Main {
public static void main(String[] args) throws Exception {
// Creating an instance of FindSystemClass
FindSystemClass sc = new FindSystemClass();
sc.loadedSystemClass();
}
}

Output

输出量

Class already loaded!!!

翻译自: https://www.includehelp.com/java/classloader-findsystemclass-method-with-example.aspx

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

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

相关文章

TFS 链接不上

C:\Users\Administrator>net use 会记录新的网络连接。 列表是空的。 C:\Users\Administrator>net use \\192.168.1.61\ipc$ wangkun /user:wangkun 命令成功完成。 转载于:https://www.cnblogs.com/rhythmK/archive/2012/06/04/2534066.html

Linux内核设计与实现---虚拟文件系统

虚拟文件系统1 通用文件系统2 文件系统抽象层3 Unix文件系统4 VFS对象及其数据结构其他VFS对象5 超级快对象超级块操作6 索引节点对象索引节点操作7 目录项对象目录项状态目录项缓存目录项操作8 文件对象9 和文件系统相关的数据结构10 和进程相关的数据结构11 Linux中的文件系统…

Oracle 查询历史数据(转帖)

回复误删除数据信息。 1、执行 alter table table_name enable row movement; 2、执行 FlashBack table table_name to timestamp to_timestamp(2012-05-24 14:59:36,yyyy-mm-dd hh24:mi:ss); 查询历史操作数据信息。 比较合理的方法是先从闪回区查找出被误删的数据&#xff0c…

Java里面的几种路径的区别

1,相对路径 相对路径就是指由这个文件所在的路径引起的跟其它文件(或文件夹)的路径关系。 也就是说: 对于如图所示:一news.html为例 在WEB15工程下的WebContent下的WEB-INF下的news.html 当我访问的news.html的时候…

Linux内核设计与实现---块I/O层

块I/O层1 解刨一个块设备2 缓冲区和缓冲区头3 bio结构体新老方法对比4 请求队列5 I/O调度程序I/O调度程序的工作Linus电梯最终期限I/O调度程序预测I/O调度程序完全公正的排队I/O调度程序空操作的I/O调度程序I/O调度程序的选择系统中能够 随机访问 固定大小数据片的设备被称为块…

Java字符类isUpperCase()方法与示例

角色类isUpperCase()方法 (Character class isUpperCase() method) isUpperCase() method is available in java.lang package. isUpperCase()方法在java.lang包中可用。 isUpperCase() method is used to check whether the given char value is uppercase or not. isUpperCas…

javascript:history.go()和History.back()的区别

javascript:history.go()和History.back()的区别收藏 <input typebutton value刷新 οnclick"window.location.reload()"> <input typebutton value前进 οnclick"window.history.go(1)"> <input typebutton value后…

sql查询行转列

--SQL 面试题 /* 问题&#xff1a;假设有张学生成绩表(tb)如下: 姓名 课程 分数 张三 语文 74 张三 数学 83 张三 物理 93 李四 语文 74 李四 数学 84 李四 物理 94 想变成(得到如下结果)&#xff1a; 姓名 语文 数学 物理 ---- ---- ---- ---- 李四 74 84 94 张三 74 83 93 --…

算法---数

数1 最大公约数2 最小公约数3 进制转换4 阶乘统计阶乘尾部0的个数5 字符串加法减法二进制加法6 多数投票问题数组中出现次数多于n/2的元素7 相遇问题改变数组元素使所有元素都相同1 最大公约数 欧几里得算法&#xff1a;两个整数的最大公约数等于其中较小的那个数和两数相除余…

Java ByteArrayOutputStream reset()方法及示例

ByteArrayOutputStream类reset()方法 (ByteArrayOutputStream Class reset() method) reset() method is available in java.io package. reset()方法在java.io包中可用。 reset() method is used to reset this stream (i.e. it removes all currently consumed output in thi…

使用存储过程修改sql server 2005 用户密码

exec sp_password null,新密码,用户名转载于:https://www.cnblogs.com/SXLBlog/archive/2009/07/10/1520590.html

winform TopMost

当设置winform窗体的TopMost属性为true时&#xff0c;有时会出现不好使的状况&#xff0c;这可能是因为窗体设置了MdiParent属性。转载于:https://www.cnblogs.com/magic-cube/archive/2012/06/10/2544216.html

Linux内核设计与实现---进程地址空间

进程地址空间1 内存描述符分配内存描述符销毁内存描述符mm_struct与内核线程2 内存区域VMA标志VMA操作内存区域的树形结构和内存区域的链表结构3 操作内存区域find_vma()find_vma_prev()find_vma_intersection()4 mmap()和do_mmap()&#xff1a;创建地址空间mmap&#xff08;&a…

JavaScript中带有示例的Math.log10()方法

JavaScript | Math.log10()方法 (JavaScript | Math.log10() Method) Math operations in JavaScript are handled using functions of math library in JavaScript. In this tutorial on Math.log10() method, we will learn about the log10() method and its working with e…

JSP技术

一、jsp脚本和注释 jsp脚本&#xff1a; 1&#xff09;<%java代码%> ----- 内部的java代码翻译到service方法的内部 2&#xff09;<%java变量或表达式> ----- 会被翻译成service方法内部out.print() 3&#xff09;<%!java代码%> ---- 会被翻译成servlet的成…

jQuery.ajax不能实现return值调用问题

我们使用jQuery.ajax函数是不能实现success方法return值的&#xff0c;而有时候我们需要对成功返回的数据进行处理&#xff0c;一般来说&#xff0c;与服务器交互后会返回很多的数据&#xff0c;而有些数据需要进行特别处理&#xff0c;这时需要实现success方法return&#xff…

Linux内核设计与实现---页高速缓存和页回写

页高速缓存和页回写1 页高速缓存2 基树3 缓冲区高速缓存4 pdflush后台例程膝上型电脑模式bdflush和kupdated避免拥塞的方法&#xff1a;使用多线程页高速缓存&#xff08;cache&#xff09;是Linux内核实现的一种主要磁盘缓存&#xff0c;通过把磁盘中的数据缓存到物理内存中&a…

EL技术

1&#xff0e;EL 表达式概述 EL&#xff08;Express Lanuage&#xff09;表达式可以嵌入在jsp页面内部&#xff0c;减少jsp脚本的编写&#xff0c;EL 出现的目的是要替代jsp页面中脚本的编写。 2&#xff0e;EL从域中取出数据(EL最重要的作用) jsp脚本&#xff1a;<%requ…

math.trunc_JavaScript中带有示例的Math.trunc()方法

math.truncJavaScript | Math.trunc()方法 (JavaScript | Math.trunc() Method) Math.trunc() is a function in math library of JavaScript that is used to extract the integer part of the given floating-point number. It removes the decimal and all the digits after…

.NET程序员的书单

zz from sjtu bbs: http://bbs.sjtu.edu.cn/bbscon?boardDotNET&fileM.1126188158.A 发信人: luckySeven(lucky为这位mm默哀), 信区: DotNET 标 题: .NET程序员的书单 发信站: 饮水思源 (2005年09月08日22:02:45 星期四), 转信 发信人: AtomAndBit (原子与比特), 信区: D…