为了账号安全,请及时绑定邮箱和手机立即绑定

为什么重新赋值运行错误

public class HelloWorld{

    public static void main(String[] args) {

String hobby="慕课网";

        

System.out.println(+hobby);

hobby="我爱慕课网":

System.out,println(+hobby)

}

}

显示

error: not a statement
System.out,println(+hobby);
^
error: ';' expected
System.out,println(+hobby);
^
2 errors

正在回答

2 回答

分号、引号切换成英文状态下的吧,中文状态的会报错。+一般在输出语句中做连接符,单独的变量或字符串是不需要+的。

参考代码:

public class HelloWorld{
    public static void main(String[] args) {
    String hobby="慕课网";
    System.out.println(hobby);
    hobby="我爱慕课网";
    System.out.println(hobby);
   }
}


0 回复 有任何疑惑可以回复我~

你那个 +hobby 什么意思?

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么重新赋值运行错误

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信