Lesson 1
Object-oriented programming in Java
Java is an OOP language, which means that Java programs are developed as groups of interrelated objects.
This module introduces you to object-oriented programming (OOP) and the role it plays in Java.
OOP concepts such as objects, classes, inheritance, and methods will be discussed. The coverage of each concept is followed up by example Java code.
The OOP skills you will learn in this module provide a background that is necessary when it comes to developing effective Java programs.
OOP concepts such as objects, classes, inheritance, and methods will be discussed. The coverage of each concept is followed up by example Java code.
The OOP skills you will learn in this module provide a background that is necessary when it comes to developing effective Java programs.
Module learning objectives
After completing the module, you will have the skills and knowledge necessary to:
- Understand the relationship between classes and objects
- Create simple class definitions
- Add behavior to classes using methods
