The first day of learning java-learning experience

Learning experience
1. The smallest unit of a java program is a class, and a java program has at least one class.
2. The entrance of a java program is the main method, and the format of the main method is fixed:
public static void main(String[] args){ }三, The statement that outputs the content in the console: System.out.println("Content to be output"); (written in the main method)


Meaning under the editor
Insert picture description here
Insert picture description here
Insert picture description here

Insert picture description here

Guess you like

Origin blog.csdn.net/qq_44023710/article/details/112873522