所以String name="imooc";和String name=new String("imooc");是一个东西吗?只是第一种是第二种的简化版?
私以为:
前者创建的是一个name字符串,是个变量,其值为imooc。后者是创建了一个对象(实例)。