Learning Java/Basic Java Language: Difference between revisions

Content deleted Content added
→‎System.out: Clarify ambiguous wording
m Robot: Correcting and improving links wiki
Line 87:
</source>
 
is called a '''[[Wikipediaw:en:Javadoc |Javadoc comment]]'''. These comments are used to generate documentation for your code, and they generally appear at the beginning of a class or a method definition. A special program (also named javadoc) can be used to automatically create documentation from the Javadoc comments, usually in the form of a set of HTML files. It is generally good practice to fully document your code by using Javadoc comments, but it is not required. We will use comments to document and explain our code from now on.
 
== Variables ==