25T2 Week 2
Friday 1pm-4pm (F13A)
Start 1:05pm
By: Sam Zheng (z5418112)
Original Slides by: Alvin Cherk
What is it?
In Java, a class can inherit attributes and methods from another class. The class that inherits the properties is known as the sub-class or the child class. The class from which the properties are inherited is known as the superclass or the parent class.
Known as a "is-a" relationship
Dog might contain a method to bark()
Dog must have a bark() method defined, but now you know that all Dog classes will have a bark method.public interface Dog {
public void bark();
}
public class Chihuahua implements Dog {
public void bark() {
System.out.println("arf arf");
}
}
public class Greyhound implements Dog {
public void bark() {
System.out.println("woof woof");
}
}public abstract class Dog {
private String colour;
public String getColour() {
return colour;
}
public abstract void bark();
}
public class Chihuahua extends Dog {
public Chihuahua(String colour) {
this.colour = colour;
}
@Override
public void bark() {
System.out.println("arf arf");
}
}
public class Greyhound extends Dog {
public GreyHound(String colour) {
this.colour = colour;
}
@Override
public void bark() {
System.out.println("woof woof");
}
}package circle;
public class Circle extends Object {
// Every class extends Object, it is not needed though
private static final double pi = 3.14159;
private int x, y;
private int r;
// Only 1 variable for all Circle objects
static int no_circles = 0;
public Circle() {
super(); // not needed
no_circles++;
}
public double circumference() {
return 2 * pi * r;
}
}What are static fields and methods?
Static fields are variables that are common and available to all instances of a Class. They belong to the Class, rather than an instance.
Methods are a block of code that perform a task. You can think of them as functions of a class.
JavaDoc
Single Line
// Single line commentMulti-line comment
/**
* This is multi-line
* documentation
*/JavaDoc Documentation
/**
* Constructor used to create a file
* @param fileName the name of the file
* @param content contents of the file
*//**
* File class that stores content under a file name
*/
public class File {
/**
* Constructor used to create a file
* @param fileName the name of the file
* @param content contents of the file
*/
public File(String fileName, String content) {}
/**
* Constructor used to make a partial file when receiving a new file
* I.e., content.length() != fileSize with no compression
* @param fileName
* @param fileSize
*/
protected File(String fileName, int fileSize) {}
/**
* Checks if transfer has been completed
* @return true if it has been completed
*/
public boolean hasTransferBeenCompleted() {}
}Employee.java & Manager.java
How many constructors does a class need?
Technically none. If a class is defined without a constructor, Java adds a default constructor
However, if a class needs attributes to be assigned (e.g., has a salary), then a constructor must be assigned.
If your class has attributes with no default values, then the constructor must set these attributes. This is because variables with no values are dangerous (null), and is also the constructor responsibility.
Each class's constructor is also only responsible for setting its own attributes. Do not set the superclass's attributes within the subclasses without using a super(...) constructor call
How many constructors does a class need?
import java.time.LocalDate;
public class BadConstructor {
public String name;
public double salary;
public LocalDate hireDate;
public BadConstructor() {
this.hireDate = LocalDate.now();
// salary and hireDate aren't assigned a value
// Technically, they're defaulted to null
}
public static void main(String[] args) {
BadConstructor e = new BadConstructor();
System.out.println(e.name);
System.out.println(e.salary);
System.out.println(e.hireDate);
}
}How do you write a good equals method?
Since we are overriding an existing method (in the super most class called Object), we must follow the conditions described.
The conditions can be found in the Java Docs
The semantics of this was explored in a past exam
It is accessible only to the same class (not including main). The most restrictive modifier.
It is accessible to everything. The least restrictive modifier.
Can be accessed in the same package and in inheritance.
The default access modifier is also called package-private, which means that all members are visible within the same package but aren't accessible from other packages