Java receiving console data types-Input

Source: Internet
Author: User

Java beginners can easily understand the output class method system. Out. println ("Hello, Java! ");

However, it is not clear about the input, that is, receiving user input data in the console.

I have searched for a long time on the Internet on my own book, with a lot of information and disorder.

In a Java learning video, we can see the input class usage.

Public class inputfromconsole {public static void main (string [] ARGs) {S = new partition (system. in); string name = S. nextline (); int ival = S. nextint (); system. out. println (ival + "," + name );}}

 

First, create an object S. The initial value of the constructor is system. in, and then use S. nextint () is used to receive the ival value of an int type data. nextline () to receive string-type names and then output them separately.

An error is prompted during compilation because the handler class is in a package named util.

InProgramAdd import java. util. *; at the beginning to solve the problem.

 

Import Java. util. *; public class inputfromconsole {public static void main (string [] ARGs) {S = new feature (system. in); string name = S. nextline (); int ival = S. nextint (); system. out. println (ival + "," + name );}}

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.