Home  >  Article  >  Java  >  What is scanner in java

What is scanner in java

little bottle
little bottleOriginal
2019-05-18 17:50:0427560browse

The scanner in java is a class, a new utility for scanning input text; when writing a Java program in Eclipse, it can be used if the variables need to be entered manually. scanner class.

What is scanner in java

scanner in java is a class that is a new utility for scanning input text. This article will give you a detailed introduction, and interested friends can come and learn more.

When we write a Java program in Eclipse, If our variables need to be entered manually, we can use the scanner class.

#Scanner class, a new utility for scanning input text.

Since any data must be retrieved through capturing groups of the same schema or by using an index to retrieve individual parts of the text.

You can then use regular expressions in conjunction with methods for retrieving data items of specific types from the input stream.

In this way, in addition to using regular expressions, the Scanner class can also arbitrarily analyze data of strings and basic types (such as int and double).

With Scanner, you can write a custom parser for any text content you want to process.

PS: In Eclipse, you must import java.util.Scanner under the package at the beginning; otherwise, the scanner cannot be called.

The above is the detailed content of What is scanner in java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn