Difference between revisions of "Java (programming language)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(See also)
 
(6 intermediate revisions by the same user not shown)
Line 11: Line 11:
 
Do not confuse not confuse Java with [[JavaScript]].
 
Do not confuse not confuse Java with [[JavaScript]].
  
JavaScript is an entirely different programming language
+
JavaScript is an entirely different programming language.
 
+
The similarity of names is due to a marketing campaign.
+
  
 
== See also ==
 
== See also ==
  
 +
* [[Apache Maven]] - a [[build automation]] tool used primarily for Java.
 +
* [[Java on Windows]]
 
* [[Java applet]]
 
* [[Java applet]]
 
* [[Programming language]]
 
* [[Programming language]]
Line 26: Line 26:
 
[[Category:Computer programming]]
 
[[Category:Computer programming]]
 
[[Category:Computer programming]]
 
[[Category:Computer programming]]
 +
[[Category:Java (programming language)]]
 
[[Category:Programming languages]]
 
[[Category:Programming languages]]

Latest revision as of 14:10, 5 December 2016

Java is a general-purpose computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.

Description

Java 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.

Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM) regardless of computer architecture.

JavaScript

Do not confuse not confuse Java with JavaScript.

JavaScript is an entirely different programming language.

See also

External Links