首页 > 其他分享 >scanner

scanner

时间:2022-11-14 12:44:05浏览次数:39  
标签:nextLine Scanner System String scanner out

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流的类用完要关掉
    }
}
  1. scanner.hasNextLine()与hasNext()的区别

    next遇到有效字符之后的分隔符即停止

    nextLine遇到换行符才停止

  2. haveNextFloat/Int etc

  3. 注意大小写

标签:nextLine,Scanner,System,String,scanner,out
From: https://www.cnblogs.com/hithin/p/16888679.html

相关文章