Java is a versatile, object-oriented programming language first released by Sun Microsystems in 1995. It's designed to be platform-independent, following the principle of "Write Once, Run Anywhere" (WORA). This means that Java code can run on any device or operating system that has a Java Virtual Machine (JVM) installed, without needing to be recompiled.
History
In June 1991, a small team of engineers at Sun Microsystems led by James Gosling (along with Mike Sheridan and Patrick Naughton) started a project called Green. This is to develop a programming language for small electronic devices such as television, setup-box, etc.
In 1993, the HTTP protocol and Mosaic browser arrived which made them to develop the language for the internet.
In 1995, they developed a browser named Webrunner which is capable of showing HTML content mixed with applets. Sun Microsystems officially announced Java at the SunWorld conference and Netscape agreed to include Java support in their popular Netscape Navigator browser.
In 2009, Sun Microsystems was bought by Oracle. It was initially named 'OAK' after an oak tree that stood outside his office. Then, it was renamed to 'JAVA' as the 'OAK' trademark was already used by Oak Technology.
Java is widely used for developing enterprise-level applications, Android mobile apps, web applications, and more.
To start programming in Java, you need to set up your development environment. Here's a step-by-step guide:
Download and install the Java Development Kit (JDK):
Set up environment variables:
Install an Integrated Development Environment (IDE):
Verify your installation:
Let's create a simple "Hello, World!" program to ensure your Java environment is set up correctly and to introduce you to basic Java syntax.
Open your text editor or IDE.
Create a new file and name it HelloWorld.java.
Enter the following code:
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } }
Save the file.
Open a command prompt or terminal, navigate to the directory containing your HelloWorld.java file.
Compile the program by typing:
javac HelloWorld.java
This will create a HelloWorld.class file.
java HelloWorld
You should see the output: Hello, World!
Congratulations! You've just written and run your first Java program.
Let's break down the code:
public class HelloWorld: This declares a public class named HelloWorld. In Java, the class name must match the filename.
public static void main(String[] args): This is the main method, the entry point of any Java program.
System.out.println("Hello, World!");: Diese Zeile druckt den Text „Hello, World!“ zur Konsole.
Während wir weiterhin Java lernen, werden wir im nächsten Artikel die Grundlagen der Java-Syntax besprechen. Wir werden komplexere Konzepte wie Variablen, Datentypen, Kontrollstrukturen, objektorientierte Programmierung und vieles mehr untersuchen.
Ich würde gerne von Ihren Erfahrungen mit Java hören!
Auf welchen Aspekt von Java freuen Sie sich am meisten und warum?
Wenn Sie diesen Artikel hilfreich fanden, folgen Sie ihm bitte für weitere Java-Inhalte. Ihre „Gefällt mir“-Angaben und Kommentare freuen uns sehr – sie helfen mir zu verstehen, welche Themen Sie am meisten interessieren, und ermöglichen es mir, zukünftige Inhalte an Ihre Bedürfnisse anzupassen.
Sind beim Einrichten Ihrer Java-Umgebung Probleme aufgetreten? Teilen Sie Ihre Erfahrungen in den Kommentaren unten und lassen Sie uns gemeinsam Probleme lösen!
Seien Sie gespannt auf unseren nächsten Artikel über die Grundlagen der Java-Syntax. Viel Spaß beim Codieren!
Das obige ist der detaillierte Inhalt vonEinführung in Java: für Anfänger. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!