Class Java Book

For example, consider the following:

class Rectangle {}
class ColorRectangle extends Rectangle {}
public class Main {
public static void main(String args[]) {
Rectangle rectangle = new Rectangle();
ColorRectangle colorRectangle = new ColorRectangle();
rectangle = colorRectangle;
}
}