标签:
1 public class typeof1{ 2 private String a="zzw"; 3 public void instance(){ 4 if(a instanceof String) //判断是不是String类型的 5 { 6 System.out.println("hello world!"); 7 } 8 } 9 public static void main(String args[]){ 10 new typeof1().instance(); 11 } 12 }
运行结果:
hello world!
标签:
原文地址:http://www.cnblogs.com/zzzzw/p/4945864.html