String源码:
public static String valueOf(Object obj) { return (obj == null) ? "null" : obj.toString(); }
由此可以看出任何类型的数据都可以转换为String类型