欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Javase学习记录之------加法的基础用法

程序员文章站 2024-03-23 14:46:10
...

加法的基础用法

public class Sun {
    public static  void main (String [] args){
        System.out.println("Hallo Word");

        //加法
        System.out.println(3+4);

        //正号
        System.out.println('a');
        System.out.println('a'+1);

        //字符串连接符
        System.out.println("hallo"+'a'+1);
        System.out.println('a'+1+"hallo");
        
        //隐含的强制转换
        short s=1;
        s+=1;
        System.out.println(s);
       

使用加法时遇到的问题和解决方法

short s=1;
s=s+1;
System.out.println(s);
不兼容的类型: 从int转换到short可能会有损失

short s=1;
s+=1
不是等价于s=s+1;
而是等价于s=(s的数据类型)(s+1);