A collection of computer data and instructions organized in a specific order.
Commonly used software:
Minesweeper, Thunder, QQ, etc.
DOS, Windows, Linux, etc.
System software:
Application software:
Production software
Software The emergence enables better interaction between humans and computers.
Interaction method:
Graphical interface (GUI): This method is simple and intuitive, easy for users to accept and easy to use operate.
Command line mode (CLI): You need a console to enter specific instructions to let the computer complete some operations. It is more troublesome and needs to remember some commands.
is a way of communication between people.
For example: Chinese people use Chinese to communicate with each other, but if Chinese people want to communicate with Korean stickmen, they must learn Korean.
The way people communicate with computers.
If people want to communicate with computers, they must learn computer language.
There are many computer languages:
C
C++
java
...
In short: the java program developed using JDK is handed over to JRE for execution.
package lesson1;/** * 描述:第一个java程序 */public class Demo1 {/** * main()方法 java程序的入口 * @param args */public static void main(String[] args) {//输出语句System.out.println("你好啊 java"); } }
The above is the detailed content of Detailed introduction to java language. For more information, please follow other related articles on the PHP Chinese website!