Update java.html.markdown

This commit is contained in:
Jake Prather 2013-06-29 22:56:22 -05:00
parent 9c9f2c6b9a
commit 0523de70a1

View File

@ -97,7 +97,7 @@ Read more here: https://en.wikipedia.org/wiki/Java_(programming_language)
array[1] = 1;
System.out.println(array[1]); // => 1
array[1] = 2;
printf("%d\n", my_array[1]); // => 2
System.out.println(array[1]); // => 2
//Others to check out
//ArrayLists - Like arrays except more functionality is offered, and the size is mutable
@ -139,10 +139,10 @@ Read more here: https://en.wikipedia.org/wiki/Java_(programming_language)
// Incrementations
int i=0;
i++; //i = 1. Post Incrementation
++i; //i = 2. Pre Incrementation
i--; //i = 1. Post Decrementation
--i; //i = 0. Pre Decrementation
i++; //i = 1. Post-Incrementation
++i; //i = 2. Pre-Incrementation
i--; //i = 1. Post-Decrementation
--i; //i = 0. Pre-Decrementation
///////////////////////////////////////
// Control Structures
@ -288,13 +288,13 @@ Read more here: https://en.wikipedia.org/wiki/Java_(programming_language)
}
//Now..Later in the main / driver of your java program
public class Main
{
public static void main (String[] args) throws java.lang.Exception
{
//Call bicycle's constructor
Bicycle trek = new Bicycle();
//Manipulate your object
trek.speedUp(3);
trek.setCadence(100);
}