Java类class cast()方法及示例

类class cast()方法 (Class class cast() method)

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

    在java.lang包中提供了cast()方法

  • cast() method casts this Object to the class or an interface denoted by this Class object.

    cast()方法将此Object强制转换为该Class或此Class对象表示的接口。

  • cast() 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.

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

  • cast() method may throw ClassCastException at the time of casting an Object.

    cast()方法可能会在投射对象时抛出ClassCastException

    ClassCastException: In this exception when the given object is not null.

    ClassCastException :在此异常中,给定对象不为null。

Syntax:

句法:

    public Type cast(Object o);

Parameter(s):

参数:

  • Object o – represents the object to be cast.

    对象o –表示要投射的对象。

Return value:

返回值:

The return type of this method is Type, it returns the following values based on the given cases,

此方法的返回类型为Type ,它根据给定的情况返回以下值:

  • It returns the casting object.

    它返回转换对象。

  • It returns null when the given Object is null.

    当给定的Object为null时,它返回null。

Example:

例:

// Java program to demonstrate the example 
// of Type cast(Object o) method of Class 
class A1 {
// A1 Blank implementation
}
class B1 extends A1 {
// B1 Blank implementation
}
public class MainClass {
public static void main(String[] args) {
// Creting an instance of MainClass
MainClass mc = new MainClass();
// Display Class
System.out.println("mc.getClass():" + mc.getClass());
// Creating an instance of class A1 and B1
A1 a = new A1();
B1 b = new B1();
// Casting object b to a by using cast(b) method
Object a1 = A1.class.cast(b);
// Display Class of object a , b and a1
System.out.println("a.getClass(): " + a.getClass());
System.out.println("b.getClass(): " + b.getClass());
System.out.println("a1.getClass(): " + a1.getClass());
}
}

Output

输出量

mc.getClass():class MainClass
a.getClass(): class A1
b.getClass(): class B1
a1.getClass(): class B1

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

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

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

相关文章

加分进了字节,MySQL真yyds!

Java研发工程师必备技能非MySQL莫属,虽说易学好上手,但应对大厂面试,最容易遭遇滑铁卢、功败垂成的也是它。上手简单,玩转难,才是这款开源数据库叱咤业界多年的真实写照。MySQL 8.0正式版的到来,在性能和速…

基于Fragment的百度地图框架的使用

博客:http://blog.csdn.net/developer_jiangqq (一)基本介绍(Fragment和SupportMapFragment): Fragment的使用现在安卓APP开发中用的比较多了,Fragment名称为碎片和Activity有着相似的生命管理周期,基本作用可以进行开发兼容手机和平板的app,较少兼容分辨…

Nacos服务注册与发现的2种实现方法!

作者 | 磊哥来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)Spring Cloud Alibaba 技术体系中的 Nacos,提供了两个重要的功能:注册中心(服务注册与发…

java settime_Java日历setTime()方法及示例

java settime日历类setTime()方法 (Calendar Class setTime() method) setTime() method is available in java.util package. setTime()方法在java.util包中可用。 setTime() method is used to sets time with the specified Date(d) of this Calendar. setTime()方法用于使用…

面试必备:Spring 面试 63 问!

作者 | 夏目blog.csdn.net/wuzhiwei549/article/details/122324261Sping原理Spring是一个轻量级Java开发框架,最早有Rod Johnson创建,目的是为了解决企业级应用开发的业务逻辑层和其他各层的耦合问题。它是一个分层的JavaSE/JavaEE full-stack&#xff0…

javafor循环打印图案_C程序使用循环打印盒子图案

javafor循环打印图案Input a number and print the following box pattern in C language, 输入数字并以C语言打印以下框形 , 4 4 4 4 4 4 44 3 3 3 3 3 4 4 3 2 2 2 3 4 4 3 2 1 2 3 4 4 3 2 2 2 3 4 4 3 3 3 3 3 4 4 4 4 4 4 4 4 Input format: 输入…

懒人专用SSH框架下的基本配置

项目结束&#xff0c;马上就要出去找工作了&#xff0c;这段时间也不用写项目&#xff0c;就整理了一些以后可能会用的到的配置&#xff0c;还有一个原因就是我不想去记忆。。。。。。。。。SSH下application.xml的基本配置&#xff0c;应该满足一般的开发需求<?xml versio…

为什么HashMap会产生死循环?

作者&#xff1a;磊哥来源 | Java面试真题解析&#xff08;ID&#xff1a;aimianshi666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;面试合集&#xff1a;https://gitee.com/mydb/interviewHashMap 死循环是一个比较常见、比较经典的问题&am…

iOS的自动化测试

2019独角兽企业重金招聘Python工程师标准>>> iOS的自动化测试:http://www.360doc.com/content/13/1225/22/1912775_340124906.shtml 转载于:https://my.oschina.net/CeShiXiaoSongShu/blog/496660

为什么阿里全面推动 K8S 落地,咬紧牙关也要搞云原生?

身为让容器应用实现大规模工业生产的一大功臣&#xff0c;过去几年&#xff0c;Kubernetes 势头迅猛&#xff0c;BAT、京东、美团、字节都走上了全域容器化部署以及云原生架构的康庄大道。而作为支撑阿里万亿级应用背后的核心&#xff0c;阿里云早在2016年就顺势搭上容器化这趟…

python字符串find_Python字符串| 带示例的find()方法

python字符串findString.find()方法 (String.find() Method) find() is an inbuilt method of python, it is used to check whether a sub-string exists in the string or not. If sub-string exists, the method returns the lowest index of the sub-string, if sub-string…

.sdp文件格式介绍

最近做RTSP流播放&#xff0c;需要了解.sdp这种会话描述的文件格式&#xff0c;当然&#xff0c;里面的具体语法有SDP解析器来分析。但是我需要大概了解一些字段的意思&#xff0c;它是文本描述的&#xff0c;采用key value的形式描述。 https://en.wikipedia.org/wiki/Session…

Spring Cloud Alibaba Nacos路由策略之保护阈值!

作者 | 磊哥来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;在 Nacos 的路由策略中有 3 个比较重要的内容&#xff1a;权重、保护阈值和就近访问。因为这 3 个内容都是彼此独立的&#…

lambda python_Python | Lambda和filter()与示例

lambda pythonThe filter() function is used to filter the elements from given iterable collection based on applied function. filter()函数用于根据应用函数从给定的可迭代集合中过滤元素。 Example: 例&#xff1a; Given a list of integers and we have to filter …

浅谈 OneAPM 在 express 项目中的实践

【编者按】OneAPM 运营团队&#xff0c;近日在 github 上发现了一篇文章&#xff0c;特别奉献给大家。本文作者王宇先生从2015年年初就开始使用我们的产品&#xff0c;也是OneAPM 的忠实用户。 OneAPM 是一个优秀的性能监控平台。为什么我们要使用性能监控呢&#xff1f; 并不是…

【万字长文】Spring Cloud Alibaba 开箱即用!

互联网时代&#xff0c;面对复杂业务&#xff0c;讲究 分而治之。将一个大的单体系统拆分为若干个微服务&#xff0c;保证每个系统的职责单一&#xff0c;可以垂直深度扩展。但是一个个独立的微服务像一座座孤岛&#xff0c;如何将他们串联起来&#xff0c;才能发挥最大价值。这…

stl swap函数_C ++ STL | vector :: swap()函数与示例

stl swap函数C STL vector :: swap()函数 (C STL vector::swap() function) vector::swap() function is used to swap/exchange the content of two vectors with the same type, their sizes may differ. vector :: swap()函数用于交换/交换相同类型的两个向量的内容&#x…

HDFS DataNode 设计实现解析

前文分析了 NameNode&#xff0c;本文进一步解析 DataNode 的设计和实现要点。 文件存储 DataNode 正如其名是负责存储文件数据的节点。HDFS 中文件的存储方式是将文件按块&#xff08;block&#xff09;切分&#xff0c;默认一个 block 64MB&#xff08;该大小可配置&#xff…

芭比扣了!Nacos中服务删除不了,肿么办?

作者 | 磊哥来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;前两天遇到了一个问题&#xff0c;Nacos 中的永久服务删除不了&#xff0c;折腾了一番&#xff0c;最后还是顺利解决了。以下…

scala 空列表_如何在Scala中展平列表列表?

scala 空列表Flattening of List is converting a list of multiple List into a single List. To flatten List of List in Scala we will use the flatten method. 扁平化列表是将多个列表的列表转换为单个列表。 为了在Scala中扁平化List列表&#xff0c;我们将使用flatten方…