Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

[Java] Làm sao kiểm tra dữ liệu nhập vào từ bàn phím đúng kiểu mình muốn.

00:23 18-01-2018 2.065 lượt xem 2 bình luận 01:29 18-01-2018

Dạ em dùng "Scanner sc = new Scanner(System.in);"  khi dùng sc.nextInt() mà nhập chuỗi thì nó báo lỗi, làm sao để kiểm tra dữ liệu mình nhập vào là kiểu gì không ạ. Em muốn khi muốn nhập số nguyên mà người dùng nhập vào chuỗi thì nó không cho mà bắt buộc phải nhập số nguyên. Em cảm ơn

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
Anh Thư đã bình luận 00:27 18-01-2018
public boolean hasNextInt()

Returns true if the next token in this scanner's input can be interpreted as an int value in the default radix using the nextInt() method. The scanner does not advance past any input.

Returns:

true if and only if this scanner's next token is a valid int value

Throws:

IllegalStateException - if this scanner is closed

https://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html#hasNextInt()

Câu hỏi mới nhất