java中char类型如何接收控制台输入

日期:2018-03-01 00:40:54 人气:1

java中char类型如何接收控制台输入

java中基本数据类型的输入包括整形的输入:in.nextInt();单精度浮点型:in.nextFloat();双精度浮点型:in.nextDouble();字符串类型:in.next();in.nextLine();那么,您是否以为char类型也如in.nextChar();这样呢?如果您这样写过,那么您一定见过这个error:“The method nextChar() is undefined for the type Scanner”。那么char类型该如何输入呢??? 有时候需要我们用Sca
    A+
热门评论