Chapter 4: Methods and Encapsulation Flashcards
What parts of a method are required for the code to compile?
Return type Method name Parameter list (can be empty ()) Method body (can be empty {})
What are the access modifiers in order from most to least accessible?
public
protected
[default]
private
Can a package private class be accessed from a child class in a different package?
No. Package private is default accessibility and can only be accessed within the same package.
What does final mean when applied to a method?
The method cannot be overridden
What is the syntax for a method’s exception list?
Keyword throws followed by a comma separated list of exceptions
throws Exception1, Exception2, …
What is the correct syntax for varargs?
datatype… name
What are the rules for using varargs parameter?
It must be the last parameter and there can be only one vararg in a given parameter list
How do you pass data to a method with a vararg?
Data can be passed in as comma separated values or as an array
How do you access data from a vararg within a method?
Treat it like an array
When can you call methods on a null reference variable?
When the method is static
Can a static member call an instance member?
No
What runs first, static initializer or intance initializer?
Static
When is the last time a value can be assigned to a final instance variable?
In the constructor
When do static initializer blocks run?
When the class is first used
What do static imports do?
Allow importing of static class members
Is Java a pass-by-reference language?
No. Java is pass-by-value
What is the order in which Java will match overloaded methods?
autoboxed type
larger primitive type
varargs
exact type match
exact type match
larger primitive type
autoboxed type
varargs
Can a class constructor have a different name than the class it’s in?
No
Can a constructor have a return type?
No
If a class only has a private constructor, is a default constructor provided?
No
How do you call other constructors within the same class?
Using this()
What is the order of initialization?
constructor superclass instance variable declaration and instance initializers in the order they appear static variable declaration and static initializers in the order they appear
superclass static variable declaration and static initializers in the order they appear instance variable declaration and instance initializers in the order they appear constructor
List five JavaBeans conventions
properties are private
getters begin with ‘is’ if the property is a boolean
getters begin with ‘get’ if the property is not boolean
setters begin with ‘set’
methods are camelcase
How do you create an immutable class?
Make instance variables private
Don’t provide setters
set initial values in the constructor
When can you omit the parenthesis around a lambda expression’s parameter?
When there is exactly one parameter without an explicitly specified type
When do you need to provide a return statement in a lambda expression?
When using a code block for the right side of the expression ( {} )