<p>You can use multi-line comments or single line comments to note about a piece of code. This helps you so that you don't forget what was happening in the code</p>
<pre><codeclass="language-java">/* Multi Line Comment
I am multiple lines woo!
*/
System.out.println("Hello"); // I am an inline comment</code></pre>
<h3>Javadocs</h3>
<p>This is a standardized method in Java to describe your functions and classes</p>
<pre><codeclass="language-java">/**
* This is a Javadoc comment. A description of your class should appear here
* @author Brandon
* @version 2018
*/
public class Example{
/** Another Javadoc comment.
* A description of your program should go here
*/
public static void main(String[] args) {
}
}</code></pre>
<h2>Variables</h2>
<p>Convention in Java is for all of your functions/method names to be lowercase.</p>
<p>Class names should be title cased, each word is capitalized ex: <code>IntroExample</code></p>
<h2>Java API</h2>
<p>The Java API is publicly accessible and is extremely useful for finding methods in existing classes.</p>
<p>The API documentation for the <code>String</code> class is located here: <ahref="https://docs.oracle.com/javase/8/docs/api/index.html?java/lang/String.html">https://docs.oracle.com/javase/8/docs/api/index.html?java/lang/String.html</a></p>