基本类型转化为字符串中,例如int转化为字符串new Integer(n).toString()//将n封装为Integer对象,调用方法Integer.toString(n)//直接将n转化为字符串2种方式有什么区别呢还是完全一样?