Java Learning Essay (II.)

Source: Internet
Author: User

Editing Java source code

Editing Java source code can use any unformatted text editor, and programs such as sublime Text,uedit,editplus can be used on the Windows platform.

Java is strictly case-sensitive, save file as Xxx.java

The following procedure for the classic Hello World program

1  Public class HelloWorld 2 {3      Public Static void Main (String args[]) 4     {5         System.out.println ("HelloWorld"); 6         }7 }

Compiling Java source code

Press "Windows+r" key to enter the command line window, navigate to the Command Line window under the saved path of the source code, and enter the following command under the path:

1 javac Helloworld.java

Compile the Java source code and generate the bytecode Helloworld.class

Running Java programs

In the Command Line window, navigate to the program save path and enter the following command:

1 java HelloWorld

Basic rules for Java programs

Java programs are purely object-oriented programming (OOP) programming languages, so Java programs must exist in the form of Class (Class), which is the smallest program unit in a Java program. Java programs do not allow executable statements and methods to exist independently, so the program part must be placed in the class definition class.

Java Learning Essay (II.)

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.