Core Programming: Basic Object-Oriented Programming in Java
Core Programming: Basic Object-Oriented Programming in Java
programming
Web
Object-Oriented Nomenclature
Class means a category of things
A class name can be used in Java as the type of a field or local variable or as the return type of a function (method)
Output:
Ship1 is initially at (1,0). Ship2 has moved to (-1.41421,1.41421).
www.corewebprogramming.com
www.corewebprogramming.com
Leading lowercase letter in field, local variable, and method (function) names
myField, myVar, myMethod
www.corewebprogramming.com
The new operator is required to explicitly create the object that is referenced
ClassName variableName = new ClassName();
The null value is a distinct type in Java and should not be considered equal to zero A primitive data type cannot be cast to an object (use wrapper classes)
www.corewebprogramming.com
For example, Java has a built-in class called Point that has x and y fields
Point p = new Point(2, 3); // Build a Point object int xSquared = p.x * p.x; // xSquared is 4 p.x = 7;
One major exception applies to the access fields through varName.fieldName rule
Methods can access fields of current object without varName This will be explained when methods (functions) are discussed
www.corewebprogramming.com
Example 2: Methods
class Ship2 { public double x=0.0, y=0.0, speed=1.0, direction=0.0; public String name = "UnnamedShip"; private double degreesToRadians(double degrees) { return(degrees * Math.PI / 180.0); } public void move() { double angle = degreesToRadians(direction); x = x + speed * Math.cos(angle); y = y + speed * Math.sin(angle); } public void printLocation() { System.out.println(name + " is at (" + x + "," + y + ")."); }
www.corewebprogramming.com
Methods (Continued)
public class Test2 { public static void main(String[] args) { Ship2 s1 = new Ship2(); s1.name = "Ship1"; Ship2 s2 = new Ship2(); s2.direction = 135.0; // Northwest s2.speed = 2.0; s2.name = "Ship2"; s1.move(); s2.move(); s1.printLocation(); s2.printLocation(); } }
www.corewebprogramming.com
www.corewebprogramming.com
This special syntax that means this method isnt going to return a value it is just going to do some side effect like printing on the screen In such a case you do not need (in fact, are not permitted), a return statement that includes a value to be returned
www.corewebprogramming.com
// Example function call: // int val = square(7); public int square(int x) { return(x*x); } // Example function call: // Ship faster = fasterShip(someShip, someOtherShip); public Ship fasterShip(Ship ship1, Ship ship2) { if (ship1.speed > ship2.speed) { return(ship1); } else { return(ship2); } } www.corewebprogramming.com
but an exception is when a method of a class wants to access fields of that same class
In that case, omit the variable name and the dot For example, a move method within the Ship class might do:
public void move() { x = x + speed * Math.cos(direction); ... }
Here, x, speed, and direction are all fields within the class that the move method belongs to, so move can refer to the fields directly
As well see later, you still can use the variableName.fieldName approach, and Java invents a variable called this that can be used for that purpose www.corewebprogramming.com
Static Methods
Static functions are like global functions in other languages You can call a static method through the class name
ClassName.functionName(arguments);
For example, the Math class has a static method called cos that expects a double precision number as an argument
So you can call Math.cos(3.5) without ever having any object (instance) of the Math class
www.corewebprogramming.com
Method Visibility
public/private distinction
A declaration of private means that outside methods cant call it -- only methods within the same class can
Thus, for example, the main method of the Test2 class could not have done
double x = s1.degreesToRadians(2.2);
Only say public for methods that you want to guarantee your class will make available to users You are free to change or eliminate private methods without telling users of your class about
www.corewebprogramming.com
Example 3: Constructors
class Ship3 { public double x, y, speed, direction; public String name; public Ship3(double x, double y, double speed, double direction, String name) { this.x = x; // "this" differentiates instance vars this.y = y; // from local vars. this.speed = speed; this.direction = direction; this.name = name; } private double degreesToRadians(double degrees) { return(degrees * Math.PI / 180.0); } ...
www.corewebprogramming.com
Constructors (Continued)
public void move() { double angle = degreesToRadians(direction); x = x + speed * Math.cos(angle); y = y + speed * Math.sin(angle); } public void printLocation() { System.out.println(name + " is at (" + x + "," + y + ")."); }
public class Test3 { public static void main(String[] args) { Ship3 s1 = new Ship3(0.0, 0.0, 1.0, 0.0, "Ship1"); Ship3 s2 = new Ship3(0.0, 0.0, 2.0, 135.0, "Ship2"); s1.move(); s2.move(); s1.printLocation(); s2.printLocation(); } }
www.corewebprogramming.com
Output:
Ship1 is at (1,0). Ship2 is at (-1.41421,1.41421).
www.corewebprogramming.com
www.corewebprogramming.com
Constructors
Constructors are special functions called when a class is created with new
Constructors are especially useful for supplying values of fields Constructors are declared through:
public ClassName(args) { ... }
Notice that the constructor name must exactly match the class name Constructors have no return type (not even void), unlike a regular method Java automatically provides a zero-argument constructor if and only if the class doesnt define its own constructor
Thats why you could say in the first example, even though a constructor was never defined
www.corewebprogramming.com
Note that it is only necessary to say this.fieldName when you have a local variable and a class field with the same name; otherwise just use fieldName with no this
www.corewebprogramming.com
Destructors
www.corewebprogramming.com
Summary
Class names should start with uppercase; method names with lowercase Methods must define a return type or void if no result is returned If a method accepts no arguments, the arg-list in the method declaration is empty instead of void as in C Static methods do not require an instance of the class; static methods can be accessed through the class name The this reference in a class refers to the current object Class constructors do not declare a return type Java performs its own memory management and requires no destructors
www.corewebprogramming.com