同一个Scanner对象可以输入不同的数据类型吗?

时间:2014-10-18 14:59:28

标签: java java.util.scanner

这是我的代码:

package Random;

import java.util.Scanner;

public class SwitchMonth {
public static void main(String[] args) {
    Scanner in = new Scanner(System.in);
    System.out.println("Enter Year: ");
    int year = in.nextInt();

    System.out.println("Enter month: ");
    String month = in.nextLine();

    //String month = ""
    switch (month) {
    case "january":
    case "march":
    case "may":
    case "july":
    case "august":
    case "october":
    case "december":
        System.out.println("No. of days: 31");
        break;
    case "april":
    case "june":
    case "september":
    case "november":
        System.out.println("No. of days: 30");
        break;
    case "february":
        if ((year % 4 == 0) && !(year % 100 == 0) || (year % 400 == 0))
            System.out.println("No. of  days: 29");

        else
            System.out.println("No. of days: 28");
        break;
        default:
            System.out.println("Wrong month entered.");
            break;
    }
    in.close();     
    }
 }

输出:

Enter year: 2000
Enter month:
Wrong month entered.

程序终止而不接受月份输入。 如果我对月份名称进行硬编码,那么它的工作正常,但是当我从控制台获取输入时,它会以上面的输出终止。我相信问题在于Scanner对象。 如果我使用另一个Scanner对象一个月,那么它可以正常工作。

所以我的问题是:我可以使用相同的扫描仪对象来获取int输入然后输入字符串吗? 如果不是那么为什么??

所有答案都表示赞赏。提前谢谢。

1 个答案:

答案 0 :(得分:1)

输入年份后,

nextInt()不会消耗 ENTER ,因此nextLine()消耗它,留下一个空字符串。解决此问题的一种方法是始终使用nextLine()

int year = Integer.valueOf(in.nextLine());

或者,您可以在使用nextLine()之后使用其他 int

int year = in.nextInt();
in.nextLine(); // To get rid of the additional \n