Java Programming
Java Programming
Introduction
Compiling
Java
First Program
class Hello {
public static void main(String[ ]
arguments){
// Program execution begins here
System.out.println("Hello world.");
}
}
Program Structure
class CLASSNAME {
public static void main(String[ ]
arguments){
STATEMENTS
}
}
Output
System.out.println(some
String)
Second Program
class
Hello2 {
public static void main(String[ ]
arguments){
System.out.println("Hello world.");
// Print once
System.out.println("Line number 2");
// Again!
}
Types
Kinds
Mismatched Types
Java
test.java.2: incompatible
types found: int
required: java.lang.String
String five = 5;
Variables
Named
Example:
String foo;
Assignment
Use
Assignment
Can
EXAMPLE
class Hello3 {
public static void main(String[ ]
arguments){
String foo = "IAP 6.092;
System.out.println(foo);
foo = "Something else;
System.out.println(foo);
}
}
Operators
Symbols
Subtraction:
Multiplication: *
Division:
/
Division
Division
// d = 2.0
Order of Operations
Follows
1. Parentheses
2. Multiplication and division
3. Addition and subtraction
// x = 2.0
// y = 1.0
EXAMPLE
class DoMath {
public static void main(String[ ]
arguments){
double score = 1.0 + 2.0 * 3.0;
System.out.println(score);
score = score / 2.0;
System.out.println(score);
}
}
EXAMPLE
class DoMath2 {
public static void main(String[]
arguments){
double score = 1.0 + 2.0 * 3.0;
System.out.println(score);
double copy = score;
copy = copy / 2.0;
System.out.println(copy);
System.out.println(score);
}
}
Conversion by casting
int
a = 2;
// a = 2
double a = 2;
// a = 2.0 (Implicit)
int
a = 18.7;
// ERROR
int a = (int)18.7; // a = 18
double
a = 2/3;
// a = 0.0
double a = (double)2/3; // a =
0.6666
Assignment:
GravityCalculator
Compute
a = -9.81
Waktu, t = 10.0
Kecepatan awal, vi = 0.0
Posisi awal, xi = 0.0
Hitung posisi akhir,x(t) dimana t =
10.0
Methods
Adding Methods
public static void NAME() {
STATEMENTS
}
To call a method:
NAME();
Parameters
public static void NAME(TYPE NAME)
{
STATEMENTS
}
To call:
NAME(EXPRESSION);
Square
class Square {
public static void printSquare(int x){
System.out.println(x*x);
}
public static void main(String[ ] arguments){
int value = 2;
printSquare(value);
printSquare(3);
printSquare(value*2);
}
}
Multiple Parameters
[] NAME(TYPE NAME, TYPE
NAME) { STATEMENTS
}
To
call:
NAME(arg1, arg2);
class Multiply {
public static void times (double a, double b){
System.out.println(a * b);
}
public static void main(String[ ] arguments){
times (2, 2);
times (3, 4);
}
}
Return Values
public static TYPE NAME() {
STATEMENTS
return EXPRESSION;
}
class Square3 {
public static void printSquare(double x){
System.out.println(x*x);
}
public static void main(String[ ]
arguments){
printSquare(5);
}
}
class Square4 {
public static double square(double x){
return x*x;
}
public static void main(String[ ]
arguments){
System.out.println(square(5));
System.out.println(square(2));
}
}
Variable Scope
Variables
class SquareChange {
public static void printSquare(int x){
System.out.println("printSquare x = " + x);
x = x * x;
System.out.println("printSquare x = " + x);
}
public static void main(String[] arguments){
int x = 5;
System.out.println("main x = " + x);
printSquare(x);
System.out.println("main x = " + x);
}
}
class Scope {
public static void main(String[] arguments){
int x = 5;
if (x == 5){
int x = 6;
int y = 72;
System.out.println("x = " + x + " y = " + y);
}
System.out.println("x = " + x + " y = " + y);
}
}
Methods: Building
Blocks
Big
Mathematical Functions
Math.sin(x)
Math.cos(Math.PI
Math.pow(2,
/ 2)
3)
Math.log(Math.log(x + y))
if statement
if (CONDITION) {
STATEMENTS
}
Comparison operators
x
Boolean operators
&&:
logical AND
||: logical OR
else
if (CONDITION) {
STATEMENTS
} else {
STATEMENTS
}
else if
if (CONDITION) {
STATEMENTS
} else if (CONDITION) {
STATEMENTS
} else if (CONDITION) {
STATEMENTS
} else {
STATEMENTS
}
Questions?
Conversion by method
int
to String:
String
to int:
Comparison operators
Do
double
= 6.123233995736766E-17
a == b will return FALSE
Frequent Issues
The
Frequent Issues
Return
values:
if you declare that the method is not void, then it has
to return something!
public
return upah;
}
}
Frequent Issues
Don't
& types
Operators
Type conversions & casting
Methods & parameters
If statement
Question
Rule #1:
use good (meaningful)
names
String a1;
int a2;
double b;
// BAD!!
Rule #2:
Use indentation
public static void main (String[ ]
arguments) {
int x = 5;
x = x * x;
if (x > 20) {
System.out.println(x + > 20 );
}
double y = 3.4;
}
Rule #3:
Use whitespaces
Put
whitespaces in complex
expressions:
// BAD!!
double cel=fahr*42.0/(13.0-7.0);
// GOOD
double cel = fahr * 42.0 / (13.0 -7.0);
Rule #3:
Use whitespaces
Put
Rule #4:
Do not duplicate tests
if (minJam < 8.0) {
...
} else if (jmlJam > 60) {
...
} else if (minJam >= 8.0 && jmlJam
<= 60) {
...
}
BA
Use
indentation
Add
whitespaces
Don't
duplicate tests
Loops
Loop
int i = 0, j=0;
for ( i=0; i<3;j++ ) {
System.out.println(Rule # + i);
}
Branching Statements
break
Branching Statements
continue
For
(int i = 0; i < 10 ; i ++ ) {
continue ;
if (i % 2) cetak i;
}
Embedded loops
for (int i = 0; i < 3; i++) {
for (int j = 2; j < 4; j++) {
System.out.println (i + + j);
}
}
Scope
Arrays
An
Arrays
Example:
double [ ]
Arrays
The
Example:
int[] values = new int[5];
values[0] = 12; // CORRECT
values[4] = 12; // CORRECT
values[5] = 12; // WRONG!! compiles but
// throws an Exception
// at run-time
Arrays
An
EXAMPLE
int[ ] values;
// array of int
int[ ][ ] values; // int[ ] is a type
Arrays
To
Array Initialization
Curly
Accessing Arrays
To
values[index]
Example:
int[] values = { 12, 24, -23, 47 };
values[3] = 18; // {12,24,-23,18}
int x = values[1] + 3; // {12,24,23,18}
through an array
Example 1:
int[ ] values = new int[5];
for (int i=0; i<values.length; i++) {
values[i] = i;
int y = values[i] * values[i];
System.out.println(y);
}
Looping through an
array
Example
2:
int[ ] values = new int[5];
int i = 0;
while (i < values.length) {
values[i] = i;
int y = values[i] * values[i];
System.out.println(y);
i++;
Popular Issues 1
Array
// 99
Popular Issues 2
Curly
Popular Issues 3
Variable
initialization
Popular Issues 4
Variable
Initialization
Popular Issues 5
Defining
Summary
Programming
Loops
Arrays
Style
Class Constructors
public class CLASSNAME {
CLASSNAME ( ) {
}
CLASSNAME ([ARGUMENTS]) {
}
}
======================//
CLASSNAME obj1 = new CLASSNAME();
CLASSNAME obj2 = new
CLASSNAME([ARGUMENTS])
Constructors
Constructor
CLASSNAME () {
}
Constructor
public class Baby {
String name;
boolean isMale;
Baby(String myname, boolean
maleBaby){
name = myname;
isMale = maleBaby;
}
}
Method
public class Baby {
String name = Slim Shady;
...
void sayHi() {
System.out.println( Hi, my name
is.. +
name);
}
}
Method
public class Baby {
String weight = 5.0;
void eat(double foodWeight) {
if (foodWeight >= 0 &&
foodWeight < weight) {
weight = weight + foodWeight;
}
}
}
Class
public class Baby {
String name;
double weight = 5.0;
boolean isMale;
int numPoops = 0;
Baby[ ] siblings;
void sayHi() {
}
void eat(double foodWeight) {
}
}
Accessing fields
Object.FIELDNAME
Baby shiloh = new Baby(Shiloh JoliePitt,true);
System.out.println(shiloh.name);
System.out.println(shiloh.numPoops);
Calling Methods
Object.METHODNAME([ARGUMENTS])
Baby shiloh = new Baby(Shiloh JoliePitt,true);
shiloh.sayHi();
// Hi, my name
is ...
shiloh.eat(1);
References vs Values
Primitives vs References
Primitive
byte, float
The actual values are stored in the
variable
Reference
objects
String, int[ ], Baby,
the object
the object
References
The
==
Does
shiloh1 == shiloh2? NO
References
Baby
References
Baby
true);
mybaby.name = david
References
Baby
true);
mybaby.name = david
References
Using
References
Using
References
using
[ ] or .
reference
Imagine
Following directions to a house
Moving the furniture around
Analogous
to
static
Applies
Means
the field/method
static
public class Baby {
static int numBabiesMade = 0;
}
Baby.numBabiesMade = 100;
Baby b1 = new Baby();
Baby b2 = new Baby();
Baby.numBabiesMade = 2;
What
is
b1.numBabiesMade?
b2.numBabiesMade?
static example
Keep
static field
Keep
static method
public class Baby {
static void cry(Baby thebaby) {
System.out.println(thebaby.name + cries);
}
}
Or