Classes and Objects (Head First Java - Ch. 2, 4, 10) Flashcards
Head First Java - Ch. 2, 4, 10
Whats a primitive data type? give examples.
not considered objects or raw values and are stored directly on STACK.
byte, int, float, char, long, short, double, boolean
How many classes in a file can be a public class?
Only one.
Constructors are a special kind of method. What are three peculiarities?
A constructor must have the same name as the class itself.
Constructors do not have a return type, not even void.
Constructors are invoked using the new operator when an object is created. Constructors play the role of initializing objects.
__ is a construct that defines objects of the same type
A class
An object is an instance of a __
a class
Which operator is used to create an object?
“new” operator
You need ____ classes to create and use an object? Why?
two classes. One for the type of object you want to use. One to put your main() method in (tester class)
What is the point of a tester class?
To create and access objects of your new class type. It will use the dot operator to access the methods and variables of the new objects
How do we declare an object in the tester class (an instance of a class)? How do we access the variables method?
- [Class name] [variable] = new Class name
- [variable].[method]
method is made in other class
What’s a parameter?
is a local variable, with a type and name, and can be used inside of the body of the method
What is a return type?
the expected data type in return value for a method. A method could also have a void return type.
Can a variables value change once passed into a method?
No - the value can only be changed within the method
Is it required to have a return value for a non-void return type?
No it’s not require if we are just calling the method for the work it does inside the method
What’s a setter method?
A method used just to set the value of an instance variable - it will have a void return type
What’s a getter method?
A method used to return the value of an instance variable - it will have a matching return type
What is encapsulation and whats it relation with setter methods?
Encapsulation is using setter methods to set boundaries for values. For example, a setter method can contain code to avoid negative values.
instance variables should be ______
getters and setters should be ______
instance var should be private.
getters and setter should be public.
What is the default value for an instance variable?
integers = 0
floating points = 0.0
booleans = false
references (String or objects) = null
What’s the difference between a local and instance variable?
Instance variables are declared inside a CLASS, and has a default value
Local variables are declared within a METHOD, and don’t have a default value. They must be initialized.
What can you not do with the Math class, but you can do with every other class?
We cannot create an instance of the class Math. (Can’t be instantiated) It is marked private.
What is a static method?
a method part of a class rather than the instance of a class. No instance variables are required
What happens if you try to use an instance variable in a static method?
Error. The static function won’t know which variable is being referred to
What type of value is the same for ALL instances of classes?
Static variable. It will give you one value per CLASS, instead of one value per INSTANCE
How do we make a variable a constant? (make it so a variable can’t be changed)
We can write:
public static final [var. type] [var. name]
static {
[var.name] = value;
}
Constant “variable” names should be in _______.
ALL CAPS
A final variable means _________
you can’t change its value
A final method means _________
you can’t override the method
A final class means _________
you can’t extend the class (can’t make a subclass)
What is override?
When you have two methods with the same method name and the same parameters
What is overloading?
When you have two methods with same method name, and different parameters