大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全家桶1年46,售后保障稳定
在学习泛型时,遇到了一个小问题:
Integer i = 2;
String s = (String) i;
Integer类型转换为String类型,本来想直接用强制转换,结果报错:
Exception in thread “main” java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
经过搜索资料后发现,这样的转换只能通过以下方式进行:
Integer i = 2;
String s = i.toString();
这里给出一个稍微复杂点的代码,这个例子是Oracle官方解释泛型与不使用泛型的优势的一个例子,关于泛型的更具体的解释我可能会在之后的某个时间重新写一篇。
package graph;
import java.util.*;
public class JustTest {
public static void main (String[] args) {
ObjectContainer myObj = new ObjectContainer();
//store a string
myObj.setObj(“Test”);
System.out.println(“Value of myObj:” + myObj.getObj());
//store an int (which is autoboxed to an Integer object)
myObj.setObj(3);
System.out.println(“Value of myObj:” + myObj.getObj());
List objectList = new ArrayList(); // 不指定类型时,默认使用原始类型 Object
objectList.add(myObj);
//We have to cast and must cast the correct type to avoid ClassCastException!
//String myStr = (String)((ObjectContainer)objectList.get(0)).getObj(); // 运行时这里报错
String myStr = ((ObjectContainer)objectList.get(0)).getObj().toString();
System.out.println(myStr);
}
}
class ObjectContainer {
private Object obj;
public Object getObj() {
return obj;
}
public void setObj(Object obj) {
this.obj = obj;
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/206785.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...