Difference between revisions of "Java"

From Market Ruler Help
Jump to: navigation, search
m
 
Line 3: Line 3:
 
The traditional "Hello, world!" program can be written in '''Java''' as:
 
The traditional "Hello, world!" program can be written in '''Java''' as:
  
<code><nowiki>
+
<pre><nowiki>
 
public class HelloWorldApp {
 
public class HelloWorldApp {
 
     public static void main(String[] args) {
 
     public static void main(String[] args) {
Line 9: Line 9:
 
     }
 
     }
 
}
 
}
</nowiki></code>
+
</nowiki></pre>
  
 
==Related:==
 
==Related:==

Latest revision as of 19:53, 11 February 2019

Java is a general-purpose programming language. It is intended to let application developers "write once, run anywhere" (WORA), meaning that compiled Java code can run on all platforms that support Java without the need for recompilation.

The traditional "Hello, world!" program can be written in Java as:

public class HelloWorldApp {
    public static void main(String[] args) {
        System.out.println("Hello World!"); // Prints the string to the console.
    }
}

Related: