java中怎么判断变量是不是String类型的详解编程语言

java里没有typerof ,要用instanceof
基础类型不行,要用对象
Integer i = 0;
if (i instanceof Integer) {
  System.out.println(“haha”);
}

String str = “abc”;
if (str instanceof Object) {
  System.out.println(“haha”);
}

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/17406.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论