name为什么要用String,用int不行吗?
不可以哦。
int是整型,可以表示整数,如:
int number=1;
String是字符串,用来表示字符串数据类型,可包含单一字元或字符串的变数型态。如:
String color="red";