问答详情
源自:3-3 Java中的赋值运算符

为什么最后还要+three?

public class HelloWorld{
    public static void main(String[] args) {
        int one = 10 ;
        int two = 20 ;
        int three = 0 ;
        three =one +two;
        System.out.println("three =one +two==>"+three);
        three += one ;
        System.out.println("three += one ==>"+three);
        three -= one;
        System.out.println("three -=one ==>"+three);
        three *= one;
        System.out.println("three *=one ==>"+three);
        three /=one;
        System.out.println("three =one ==>"+three);

提问者:慕丝8427111 2020-01-29 21:56

个回答

  • 慕移动0026800
    2020-05-28 15:55:39

    表示字符串和变量的拼接

  • 慕后端2406745
    2020-02-17 20:58:28

    双引号里面的内容是直接原样输出的,后面的three代表变量three的值,加号是连接两个字符串用的。

    例如:System.out.println("three =one +two==>"+three);中引号内的three =one +two==>照样输出但是没有值,所以要添上+three将变量three的值也输出来。