javase基础第三天
生活随笔
收集整理的這篇文章主要介紹了
javase基础第三天
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
三,運(yùn)算符&if語句
1,基本邏輯運(yùn)算
&(與),|(或),^(異或),!(非)
&,遇flase則flase
|,遇true則true
^,兩邊相同為flase,兩邊不同為true
!,遇true為flase,遇flase為true
2,&&與&的區(qū)別
a:最終結(jié)果是一樣的
b:&&具有短路的效果,左邊是flase,右邊不執(zhí)行。
||與|:同理,只要||左邊為true,右邊則不執(zhí)行。
3,三元表達(dá)式
(關(guān)系表達(dá)式)?表達(dá)式1:表達(dá)式2
關(guān)系表達(dá)式為真,則執(zhí)行表達(dá)式1,若為假,則執(zhí)行表達(dá)式2.
例子:比較三個(gè)數(shù)的最大值
class Test_Operator1 {public static void main(String[] args) {//獲取三個(gè)數(shù)的最大值int a=10;int b=20;int c=30;int temp=(a>b)?a:b;int max=(temp>c)?temp:c;System.out.println("max="max);} } 復(fù)制代碼4,使用鍵盤錄用數(shù)據(jù)
/*a: 導(dǎo)包格式:import java.util.Scanner;位置:在class上面。b:創(chuàng)建鍵盤錄入對象格式:Scanner sc = new Scanner(System.in);c:通過對象獲取數(shù)據(jù)格式:int x=sc.nextInt(); */ import java.util.Scanner; class Demo2_Scanner {public static void main(String[] args);Scanner sc = new Scanner(System.in); //創(chuàng)建鍵盤錄入對象System.out.println(" 請輸入第一個(gè)整數(shù)"); int x=sc.nextInt(); //將鍵盤錄入數(shù)據(jù)存儲在x中System.out.println(x);System.out.println(" 請輸入第一個(gè)整數(shù)");int y=sc.nextInt();System.out.println(y); }復(fù)制代碼5, 選擇結(jié)構(gòu)
(1)if,else語句
class Demo1_If {public static void main(String[] args) {int a=3;if(a>=4) {System.out.println("小狗");}else {System.out.println("小貓"); }} } 復(fù)制代碼三元運(yùn)算符能實(shí)現(xiàn)的程序,if語句都可以實(shí)現(xiàn),反之不行。
if語句的嵌套使用非常常見,多加練習(xí)。
(2)switch語句
switch的格式:
switch(表達(dá)式) { //switch中的表達(dá)式可接受類型:byte,short,char,int
case 值1: //引用數(shù)據(jù)類型可以接收枚舉(JDK1.5),String字符串(JDK1.7)語句體1;break;case 值2:語句體2;break;...default:語句體n+1;break; 復(fù)制代碼}
//給定一個(gè)值,輸出星期幾 class Test_Switch {public static void main(String[] args) {int week=5;switch(week) {case 1:System.out.println("星期一");break;case 2:System.out.println("星期二");break;case 3:System.out.println("星期三");break;case 4:System.out.println("星期四");break;case 5:System.out.println("星期五");break;case 6:System.out.println("星期六");break;case 7:System.out.println("星期日");break;default:System.out.println("無");break; }} } 復(fù)制代碼轉(zhuǎn)載于:https://juejin.im/post/5b968df6e51d451a3f4bd2b0
總結(jié)
以上是生活随笔為你收集整理的javase基础第三天的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 方位话机同一号码双链路注册实现冗余
- 下一篇: python进程和线程中的两个锁