Java學習筆記9
阿新 • • 發佈:2022-04-05
算數運算子:+(加),-(減),*(乘),/(除),%(餘 模 11/5=2...1),++,——
賦值運算子 =
關係運算符 >(大於),<(小於),>=(大於等於),<=(小於等於),==(等於),!=(不等於)instanceof
邏輯運算子:&&(與),||(或),!(非)
位運算子:& ,| , ^ , ~, >> ,<< ,>>>
條件運算子?:
擴充套件賦值運算子:+=,-=,*=,/=
算數運算子
public class Demo01 {
public static void main(String[] args) {
int a = 10;
int b = 20;
int c = 25;
int d = 25;
System.out.println(a+b);
System.out.println(a-b);
System.out.println(a*b);
System.out.println(a/(double)b);
}
}
30
-10
200
0.5
拓展
public class Demo02 {
public static void main(String[] args) {
long a = 123123123123123L;
int b = 123;
short c = 10;
byte d = 8;
System.out.println(a+b+c+d);//long
System.out.println(b+c+d);//int
System.out.println(c+d);//int
}
}
運算中有long結果為long型別,沒有long結果為int型別
關係運算符
public class Demo03 {
public static void main(String[] args) {
//關係運算符返回結果:正確 錯誤 為布林值
//if
int a = 10;
int b = 20;
System.out.println(a==b);
System.out.println(a>b);
System.out.println(a<b);
System.out.println(a!=b);
}
}
false
false
true
true
模運算(取餘)、
int a = 10;
int c = 21;
System.out.println(c%a);
1