1 import java.util.Scanner; 2 3 public class Demo01 { 4 public static void main(String[] args) { 5 Scanner sc=new Scanner(System.in);//創建一個掃描器對象,用於接收鍵 ...
1 import java.util.Scanner; 2 3 public class Demo01 { 4 public static void main(String[] args) { 5 Scanner sc=new Scanner(System.in);//創建一個掃描器對象,用於接收鍵盤數據 6 System.out.println("使用next方式接收:"); 7 if(scanner.hasNext()){//判斷用戶有沒有輸入字元串,hasNextLine輸入字元串回車結束 8 String str=sc.next();//使用next方式接收nextLine 9 System.out.println("輸出的內容是:"+str); 10 } 11 sc.close();//不關閉會一直占用資源,要註意!! 12 } 13 }
註重細節,嚴謹編程。