Java12/13新特性:字符串增强


Java12/13新特性:字符串增强

文章插图
public class JAVA02 {
public static void mAIn(String[] args) {
//instanceof 模式匹配
//之前的版本中,我们需要显示地对对象进行类型转换 。
Object obj = "我是字符串";
【Java12/13新特性:字符串增强】if(obj instanceof String){
String str = (String) obj;
System.out.println(str);
}
//新版的 instanceof 可以在判断是否属于具体的类型同时完成转换 。
Object obj2 = "我是字符串";
if(obj2 instanceof String str){
System.out.println(str);
}
}
}




    推荐阅读