scanner
package scanner;
import java.util.Scanner;//导入包
public class demo01 {
public static void main(String[] args) {
Scanner scanner= new Scanner(System.in);
System.out.println("使用next方法接受:");
if(scanner.hasNextLine())
{
String str=scanner.nextLine();
System.out.println("输出的内容为:"+str);
}
scanner.close();//i/o流的类用完要关掉
}
}
-
scanner.hasNextLine()与hasNext()的区别
next遇到有效字符之后的分隔符即停止
nextLine遇到换行符才停止
-
haveNextFloat/Int etc
-
注意大小写