1/3
Vocabulary and syntax rules regarding default constructors and object reference variable declarations from the CSE 215 lecture notes.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Default constructor
A no-arg constructor with an empty body that is implicitly declared and provided automatically in a class only if no constructors are explicitly declared.
Object reference variable
A variable used to reference an object by assigning the object to it.
Syntax for declaring a reference variable
ClassName objectRefVar;
Example of a reference variable declaration
Circle myCircle;