java Scanner next方法 nextLine方法
// 创建Scanner对象 Scanner scan = new Scanner(System.in); // 阻塞等待用户输入数据 if (scan.hasNext()) { String text = scan.next(); System.out.println("输入的数据为:" + text); } // 关闭 scan.close(); next注意点: (1).next方法是阻塞的,直到它等到用户输入数据 (2).next方法遇到空白字符串后的字符都会丢弃(不知道我解释是否准确),例如aaaaaa f只能输出例如aaaaaa 而nextLine方法是没有此问题的 // 创建Scanner对象 Scanner scan = new Scanner(System.in); // 阻塞等待用户输入数据 if (scan.hasNextLine()) { String text = scan.nextLine(); System.out.println("输入的数据为:" + text); } // 关闭 scan.close(); Scanner对象还支持对输入数据类型的支持,例如 // 创建Scanner对象 Scanner scan = new Scanner(System.in); // 定义接收字符串 int number = 0; // 输入整数测试 if (scan.hasNextInt()) { number = scan.nextInt(); System.out.println("输入的是整数数据:" + number); } else { System.out.println("输入的不是整数"); } // 关闭 scan.close();
字节(Byte)是计量单位,表示数据量多少,是计算机信息技术用于计量存储容量的一种计量单位,通常情况下一字节等于八位。字符(Character)计算机中使用的字母、数字、字和符号,比如'A'、'B'、'$'、'&'等。一般在英文...
public class test { public static void main(String[] args) { &...
public class test { public static void main(String[] args) { &...
Java5 引入了一种主要用于数组的增强型 for 循环,类似js中的for inpublic class Member { public static void main(String[]&...
(1).java睡眠函数Thread.sleep(时间); //单位为毫秒(2).java睡眠函数例子Date dNow = new Date(); SimpleDateFormat ft = new&nbs...
pattern表示正则表达式,接收正则表达式作为参数例子:String content = "my name is gaojiufeng"; String pattern = "....