Due Date: Friday November 18, 2022
Purpose: code a program that uses objects
Also, we will learn the difference between a static program and an instantiated program.
Definitions:
Object Class
In Java, instantiation mean to call the constructor of a class
that creates an instance or object of the type of that class.
In other words, creating an object of the class is called instantiation.
It occupies the initial memory for the object and returns a reference.
Static Class
A static class is a class that is created inside a class,
is called a static nested class in Java.
It cannot access non-static data members and methods.
It can be accessed by outer class name.
It can access static data members of the outer class,
including private.
Student
Click here to see the instructions for the student program.