java中"+"的用法

时间:2023-01-30 11:29:28
/*
 * +的用法:
 * 1)运算符
 * 2)表达一个数据是正数
 * 3)作为字符串的拼接符
 * */
public class DataTypeDemo3 {
public static void main(String[] args) {
int a = 10 ;
int b = 20 ;

int c = a + b ;
System.out.println("c:"+c);

int f = +10;

System.out.println("5+5="+5+5);//作为拼接符使用
}
}