Chapter 6 Flashcards
What is a class?
It is the template that describes characteristics of similar objects; blueprint to create objects of that class
What is an object?
it is an instance of its’ class
What kind of entity is an object?
It is a run time entity that contains date and responds to messages.
what is encapsulation?
combining data and behavior into a single software package
name the three characteristics of objects
state, behavior, identity
What is the state of an object?
instance variables
What goes into the behavior of an object?
Methods! which define an object’s behavior in response to messages. there are two types: mutators and accessors
What’s the difference between mutators and accessors?
mutators change an object’s state. accessors access the object’s state
what does a computer’s memory hold during execution?
variables that refer to objects, class templates, and objects
Objects appear and occupy memory when instantiated and disappear when no longer need, through a process called ______.
Garbage collection, which is the JVM’s automated method for removing unused objects.
What else does the garbage collection do?
it also tracks whether objects are referenced by any variables.
describe the client and server relationship
Client is the message sender, server is the message receiver. Client only needs to know the interface, server implements and supports the interface
What is an interface?
list of methods
What is information hiding?
server’s data requirements and methods implementation hidden from THE CLIENT
Name the two types of visibility modifiers
private and public.
Define the private visibility modifier
only accessible in the enclosing class
Define the public visibility modifier
class is accessible to anyone
generally, what type of visibility modifiers should instance variables be?
Private! instance variables should generally be private.
What do constructors do?
- initialize a newly instantiated object’s instance variables.
- activated only by the keyword new
What happens with default constructors and their parameters?
Empty parameter lists.
Name the two fundamental data type categories
Primitive (int, double, boolean, char) and reference (all classes, the objects they create.)
what is the null pointer exception?
to cause a variable to no longer point at any object; set it equal to null
should we avoid null pointer exceptions?
yes!!! we really should avoid null pointer exceptions.
true or false: constructors are used when creating an object AND updating or resetting values
FALSE! constructors are only used when creating an object, NOT updating or resetting values
If the method returns no value, the return type should be ___.
if the method returns no value, the return type should be void
What does a return stmt in a void method do?
Simply ends the method
True or False: a method can have multiple return statements:
True! a method can have multiple return statements
True or false: if a method has a return type, implementation must have at least one return statement that returns a value of that type.
True. if a method has a return type, implementation must have at least one return statement that returns a value of that type.
What are formal parameters?
formal parameters are parameters listed in a method’s definition
What are actual parameters?
values passed to a method when it is invoked
what are helper methods?
used by another method to perform part of larger task.
are helper methods usually public or private?
they are usually private: only methods already defined within the class need to use them
Describe the characteristics of global variables:
- they are declared inside a class but outside any method;
- accessible to any method in the class
- held in memory as long as the object is held in memory
Describe the characteristics of local variables
- they are only declared inside a method
- accessible only within that method
- once it’s already done its’ job, it disappears. gets replaced
what is the scope of a variable?
the region where a variable can validly appear in lines of code. variables declared within any compound statement enclosed in braces have block scope.
where is the scope only visible?
it is visible only within code enclosed by braces
what is the scope of a local variable?
it is usable in the body of the method that declares it
what is the lifetime of a variable?
the period when a variable can be used.
what is the lifetime of a private instance variable?
they exist as long as the object exists