Creating an Object
= new ();
eg.
String myString = new String("MyStringValue");
--------------------------------------------------------------------------------
Calling a method of a object
.();
--------------------------------------------------------------------------------
Creating and instantiating an array
[];
= new [];
--------------------------------------------------------------------------------
For Loops
for(assignment;comparator;incrementer)
{
do something here;
}
for( = ; [<] ; ++)
{
do something here;
}
this for loop is equivilant to the following while loop
=
While( [<] )
{
do something here.
++
}
--------------------------------------------------------------------------------
Loops
While is a "pre-tested" loop. The condition is tested before the code block is executed. As a result, it is possible that the code block will never execute.
while(condition)
{
}
Do is a "post-tested" loop. The condition is tested after the code block is executed. As a result, the code block will always execute at least once.
do
{
}
while(condition)
--------------------------------------------------------------------------------
Naming Conventions
Class names start with caps
Class MyClass
{
}
Variable names start with lowercase
MyClass myVariable;
Method Names start with lowercase
public void myMethod()
{
}
10/11/2024 20:36:53 (+00:00)