关于字符串强转为基本数据类型时,不能使用:
String a="2";
int b=(int)a;
这个方式编译器是会报错的,只能使用:
int b=Integer.parseInt(a);
或者:
int b=Integer.valueOf(a);