CS141: Topics for Week 11: Apr 2/4/6, 2018


Computer Science Headlines: ACM Tech News

Reading:

Lab and Other Activities

Lecture Discussion Topics:

Concepts and Vocabulary

Inheritance, "Is a" relationship (extends keyword)
superclass (or base or parent class)
subclass (or derived or child class)
super()
Object class
Polymorphism
dynamic binding (dynamic method look-up)

Abstract (vs concrete) class
Interfaces (implements keyword)
protected access / package access
inheritance hierarchy
overriding methods (e.g. equals) (not to be confused with overloading)
instanceof operator
comparable interface