week02 Foundational OOP Flashcards
What is the role of the main
method in Java?
It’s the starting point of the program. It’s where objects are created and the program begins execution.
What are the requirements for the main
method in Java?
It must be public and static, with a single String array argument(String[] args
).
What are two key characteristics of the main
method?
The main
method must exist for the program to run and should initiate the program’s operations by creating objects and calling methods.
What is a constructor in Java?
A constructor is a special method to create and initialize an object. It has the same name as the class and sets up initial values for object attributes.
What are the key characteristics of a constructor?
A constructor does not have a return type, not even void. It initializes all instance variables with values.
How is a constructor different from a regular method?
Unlike methods, a constructor is called automatically when a new object is created and does not need a return type.
How does a constructor use parameters in Java
It uses parameters passed to it to assign values to the object’s attributes using this
keyword.
What is the equivalent of a constructor in Python?
The \_\_init\_\_
method in Python is like a constructor in Java. It initializes object’s properties.
The instance variables are declared in the constructor.
True or false?
False.
The instance variables are declared in the class.
What are instance variable in Java?
Instance variables are data elements of a class. Each object has its own copy.
Where do you declare instance variables?
Declare them at the top of a class. They should be outside any method or constructor.
How do you assign initial values to instance variables?
Set initial values in the constructor, which is called when creating an object.
What is the scope of instance variables?
The entire class. All methods and constructors in the class can use them.
What else can instance variables be called?
Fields, attributes, or data members. They store information about an object’s state.
Do instance variables have a data type?
Yes, each instance variable must be declared with a data type.
What is the purpose of instance variables?
They represent the state of an object of instance and hold values specific to each object.
What happens to instance variables that are not initialized?
They get a default value from Java: 0 for numbers, false for boolean, null for objects.
How are local variables different from instance variables regarding initialization?
Local variables do not get a default value and must be initialized before use.
What does Java do if you don’t write a constructor for a class?
Java creates a default constructor that sets all instance variables to default values.
What happens to the default constructor when you write your own constructor(s)?
If you write any constructors, Java does not create a default one.
Java class can only have one constructor.
True or false?
False. You can have multiple constructors and they can call each other with this
.
What are the default values for data types in Java?
・byte, short, int, long: 0(or 0L for long)
・float, double: 0.0(or 0.0f for float)
・char: ‘\u0000’(null character)
・boolean: false
・object: null
What is a Java object?
It’s an instance of a class that has its own space in memory.
What determines the state of a Java object?
Its state is determined by the values stored in its instance variables.
How do you access a Java object?
Through a reference, which is a variable that holds the memory address of the object.
What part of an object is visible to other classes?
Only the parts marked as public. Private parts are hidden inside the object.
What is the difference between an object’s public interface and private implementation?
Public interface is what other classes can see and use. Private implementation is internal working that other classes cannot access.
What does encapsulation mean in Java?
Encapsulation is bundling data with methods that operate on the data.
How are constructors related to encapsulation?
Constructors set initial values for an object’s state within the safe boundaries of encapsulation.
What is information hiding in Java?
It’s when an object hides its state and can only be accessed through its public methods, not directly.
What are visibility modifiers in Java?
They are keywords that define an object’s accessibility. Common modifiers are public, private, abd protected.
How do public and private visibility modifiers work?
Public members can be accessed from anywhere. Private members can only be accessed within their own class.
What is the rule of thumb for encapsulationg your classes?
Make variables private and methods public. This protects the integrity of the data.
How can encapsulated objects be visualized?
Think of them as a black box. You can’t see inside, but you can use its features.
What’s the difference between a class’s public interface and private implementation?
The public interface is what you can use from outside the class, like buttons on a machine. Private implementation is the hidden inner workings inside the class, like the machine’s engine.
What are accessors in Java?
Accessors, also know as getters, are methods that let you read private data. They return a value and have no parameters.
How do you write an accessor method?
Start with get
followed by the variable name, make it public, and return the variable value. Example:public int getPrice() { return price;}
.
What are mutators in Java?
Mutators, also know as setters, are methods that let you change private data. They don’t return a value but take a parameter.
How do you wirte a mutator method?
Start with set
followed by the variable name, make it public, and assign the parameter value to the variable. Example:public void setFirstName(String newName) {this.firstName = newName;}
.
Why do we use accessors and mutators?
They enforce encapsulation. Accessors allow read-only access to variables, and mutators enable controlled changes to variables.
Why should the use of mutators be restricted?
Limiting mutability ensures class stability and maintains valid state. Mutators should be used carefully to prevent invalid object states.
What should mutator contain?
Mutators must include logic to check if the new value is valid. They should do nothing if the value is not acceptable.
What are side effect in methods?
Side effects are changes that a method makes outside its main job.
i.g. Changing variables that are not directly part of the method or engaging in activities like reading from or writing to a file.
Accessors should have side effects.
True or False?
False. Accessors must not have any side effects. They should only return values.
What shoud mutator methods change?
Mutotar methods should only change the value of the instance variable(the implicit argument) they are meant to modify, not any other state or object.
What is the purpose of the toString
method in Java?
To provide a text representation of the object’s state, mainly for debugging and logging purposes.
True or False?
“The toString
method should contain the values of some instance variables.”
False. The toString
method should contain the values of all instance variables.
What happens when you pass an object to System.out.println()
?
Java automatically calls the object’s toString()
method to get and print the string representation.
True or false?
These two lines equivalent:System.out.println(myGuppy);
and System.out.println(myGuppy.toString());
True. Both lines of code will result in the toString
method being called and the output being printed.
What is Java class?
A Java class is a data structure that encapsulates data and methods to work on that data. It represents a specific entity or concept.
True or false?
“A Java class should expose all its data to the outside.”
False. A Java class should encapsulates its data, providing controlled access through methods.
What is the purpose of a constructor in a Java class?
A constructor initializes a new object to ensure it has a valid state before being used.
True or false?
“Java will provide a default constructor for a class if none is provided. “
True. If no constructors are explicitly defined, Java will provide a default constructor.
What does this
refer to in Java?
this
refers to the current object whose method or constructor is being executed.
Why do we use this
inside methods?
To clarify that a variable or method belongs to the current object, especially when local variable might overshadow instance variables.
True or false?
“this
can be used to call another constructor within the same class.”
True. this
is used to invoke antoher constructor in the same class.
When is this
helpful for variable names?
Use this
when an instancde variable and a method parameter have the same name to distinguish them.
True or false?
“this
should be used to improve code readability. “
True. We should use this
wherever it makes the code clearer and easier to understand.
What makes up a class’s public interface?
A class’s public interface consists of its public members, which is what other parts of a program can see and interact with.
True or false?
“A class’s API is the same as its private members.”
False. The API refers to the public interface of a class, not its private members.
What do we mean by exposing the interface of a class?
Exposing the interface means making the public methods available for other classes to use.
How do instances of classes communicate in a system?
Instances communicate with the system and other instances through their APIs, the set of public methods they offer.
True or false?
“Other parts of the system are aware of a class’s internal workings”
False. The system and other objects do not know about a class’s internal data and how it performs its tasks.
What should a well-designed class do with its internal data and implementation?
It should hide its internal data and the specifics of its implementation, revealing only what is necessary through its public interface.
What is information hiding in OOP?
Information hiding is keeping a class’s implementation details private, exposing only what is necessary through its public interface.
What does information hiding accomplish in a system’s architecture?
It decouples components, allowing them to be developed and tested independently.
True or false?
“Information hiding prevents the development of components in parallel.”
False. information hiding enables parallel development because components interact through well-defined interfaces, not direct access to each other’s data.
How does information hiding affect maintenance?
Maintenance is easier because classes are less tightly interconnected, reducing the complexity of changes.
True or false?
“In Java, you should declare local variables at the beginning of a method.”
False. Minimize the scope of local variables by declaring them as close as possible to the point where they are first used.
True or false?
“All instance variables should be made public to ensure accessibility.”
False. All instance variables should be private to restrict direct access and maintain encapsulation.
True or false?
“Making instance variables final and assigning them in the constructor can enhance immutability.”
True. Final instance variables cannot be changed once assigned, which promotes immutability.
True or false?
“You should always provide mutators for all instance variables.”
False. Only provide a mutator for an instance variable when it’s necessary to change the variable’s after the object’s construction.
True or false?
“Mutator methods should modify any arguments passed to them.”
False. Mutator methods should only change the implicit argument, which is the instance variable they are designed to modify.
True or false?
“You should provide accessors for immutable fields so they can be modified.”
False. You don’t need to provide accessors for immutable fields as they shouldn’t be modified after initialization.
True or false?
“Accessors shoud have side effects to be more useful.”
False. Accessors should not have any side effects, as their sole purpose is to return a value.
What is the key concept of Responsibility -Driven Design in Java?
Each class should have one responsibility and should manage its own data and behavior.
True or False:
“In Responsibility-Driven Design, classes can have multiple responsibilities for flexibility.”
False. Each class should have a single, clearly defined responsibility.
How do you decide which classes to implement in Responsibility-Driven Design?
By analyzing the language of the problem domain and identifying nouns as potential classes and verbs as potential methods.
What is one benefit of information hiding in Java?
It decouples system components, allowing independent development and easier maintenance.
True or false?
“Minimal coupling is a desirable characteristic in Java class design.”
True. Minimal coupling allows classes to remain independent, making the system more maintainable.
What does it mean to localize change in system design?
Changes in one part of the system should affect as few other parts as possible.
True or false:
“Side effects include changing program state that’s not related to method’s purpose.”
True. Side effects can be changes to any state not directly related to the method’s main objective.
True or false?
“It’s good practice to design methods that modify their explicit arguments.”
False. Generally, you should avoid designing methods that modify their explicit arguments to reduce unexpected behavior.
What is the Single Responsibility Principle(SRP)?
Each class should have one, and only one reason to change, meaning it should have one job or responsibility.
True or false?
“Java methods can exist outside of classes.”
False. Every method in Java must be inside a class; there are no global functions in Java.
What are the parts of a Java method declaration?
A Java method has a visibility modifier, a return type, a method name, and a parameter list.
What is the correct term for the names given to the inputs of a method?
The names given in a method declaration are called formal parameters.
What do Java methods accept and generate?
Java methods cam accept input through parameters and generate output through a return value.
True or false?
“A method in Java must return a value.”
False. A method in Java can have a return type of void
, meaning it does not return any value.
True or false?
“You must always use this
when calling a method from within the same object.”
False. The use of this
within an object to call its own methods is optional.
True or false:
“Helper(auxiliary)” methods in a Java class should always be public.
False. Helper methods are typically private because they are internal to the class’s functionality.
True or false?
“A well-designed Java class often has a few public members and many private members.”
True.
True or false?
“Users of your Java code need to understand how the methods are implemented to use your services”
False. Users of your code do not need to know about the interna implementation of the services provided.
What are variable-length parameters in Java methods?
They allow you to pass a varying number of arguments to a method, treating them as an array within the method.
True or false?
“It’s better to create overload methods than to use a variable-length parameter list for methods that need to accept a varying number of arguments.”
False. Overloading for each possible number of arguments is impractical compared to using a variable-length parameter list.
How are variable-length parameters processed inside a method?
They are automatically put into an array, which can then be processed using a for-each loop.
True or false?
“Variable-length parameter lists can accept any type of parameter, including primitives and objects.”
True.
Where must the variable-length parameter be placed in the method signature?
The variable-length parameter must be the last in the list of formal arguments.
True or false?
“A Java method can accept two sets of variable-length parameters”
False. A method cannot accept two sets of variable-length parameters.
True or false?
“Constructors can be defined to accept a variable number of parameters.”
True. Constructors can also be set up to accept a variable number of parameters.
What does method overloading rely on in Java?
Method overloading relies on the method signature, which includes the method name and parameter list but excludes the visibility and return type.
True or false?
“You can overload a method in Java based on different return types alone. “
False. Method overloading cannot be based solely on different return types; the parameter list must differ. (異なる戻り値の型だけでメソッドをオーバーロードすることはできず、引数のリストが異なる必要があるということ)
Why would you overload constructors in Java?
To allow the instantiation of a class different ways, each with its own set of parameters.
True or false?
“Each overload constructor must ensure all instance variables are left uninitialized.(オーバーロードされた各コンストラクタはインスタンス変数を未初期化のままにしてはいけない)”
False. Each overload constructor must ensure all instance variables are set to reasonable values.
Why is duplicated code in constructors considered an anti-pattern?
It leads to unnecessary repetition and increase the risk of errors and maintenace difficulty.
How can you reduce duplication in overloaded constructors?
By passing arguments from supplementary constructors to a main
constructor using this
.
True or false?
“Constructors can be private.”
True. Constructors can be private to prevent direct instantiation outside the class.
Why might you make a constructor private in Java?
To control the instantiation of a class, such as limiting the number of instances.
When a constructor is private, how can instances of the class be created?
Using a static factory method within the class that manages instance creation.
What design pattern uses a private constructor and a static method to control instances?
The Singleton design pattern.
True or false?
“The Singleton pattern allows for many instances of a class to be created.”
False. The Singleton pattern ensures only one instance of a class is created.
Where is the Singleton pattern commonly used?
In scenarios like logging, driver objects, caching, and thread pools, where a single point of access is beneficial.
True or false?
“The Singleton pattern is often used in Java as an alternative to global variables.”
True. Singletons can be used in place of global variables to ensure controlled access and instantiation.
True or false?
“The numberFormat class in Java has public constructors that can be used to instantiate it.”
False. The NumberFormat class does not have public constructors.
How can you instantiate a NumberFormat object?
By using its static factory methods, such as getCurrencyInstance()
or getPercentInstance()
.
True or false?
“The static methods of the NumberFormat class, like getCurrencyInstance()
, create a new instance every time they are called.”
False. These methods check if an instance already exists and return it; if not, they create one and the return it.
True or false?
“You can access getCurrencyInstance()
or getPercentInstance()
without instantiating the NumberFormat. class.”
True. because these methods are static, they can be accessed without instantiating the class first.
What is the purpose of Javadoc comments in Java?
Javadoc comments are used to generate the official documentation of the code. They become the public API for any public class or method.
True or false?
“Every public class in Java requires a Javadoc comment with a description, @author tag, and @version tag.”
True. Every public class should have these Javadoc elements.
What should be included in a Javadoc comment for a public method?
A description of what the method does(with the first word as a verb in present tense), @param tags for each parameter, and a @return tag if there is a return value.
True or false?
“Private methods and variables should also have Javadoc comments.”
False. Typically, private members don’t get Javadoc comments as they are not part of the pubic API.
How many kinds of comments are ther in Java?
Three.
1. single-line comments(//)
2. multi-line comments(/* /)
3. Javadoc comments(/* */)
True or false?
“Multi-line comments are only used for commenting out code.”
False. Multi-line comments can be used for explanations or commenting out code, but they are not limited to just code removal.
How is the Java API organized since Java 9?
The Java API is organized into modules, with each module containing nested packages and related classes.
True or false?
“The java.base
contains optional APIs that need to be imported before use.”
False. The java.base
module contains foundational APIs of the Java SE that are fundamental and do not need to be imported.
What are some of the contents of the java.base
module?
It includes java.lang
for fundamental classes, java.math
for Big numbers, java.text
for handling text and dates, and java.util
for collections and utilities like the Scanner class.
True or false?
“All classes in the java.lang
package must be explicitly imported.”
False. Classes in java.lang
do not require an import statement to be used.
True or false?
“To use java.util.Random
, you need to declare and initialize an instance and then invoke one of its methods.”
True. That’s the process to generate random numbers using this class.
True or false?
“You can generate pseudorandom numbers in Java without using java.util.Random
.”
True. Other options like Math.random()
or ThreadLocalRandom
can also generate pseudorandom numbers.
How many methods do you need to generate a random number with java.util.Random
?
Just one. After initializing the Random
object, you can call the method that fits the type of number you need(e.g. nextInt()
, nextDouble()
).
True or false?
“BigInteger
can change after it is make.”
False. BigInteger
is immutable.
True or false?
“Floating point numbers always exact in Java.”
False. Floating point numbers are not always exact.
True or false?
“BigDecimal
is used for big decimal numbers.”
True.
True or false?
“You can use standard operators(+, -, *, /) with BigInteger
.”
False. You must use methods like add
and divide
.
Why do we format output in Java?
We format output to make it easy to read and consistent.
What is java.util.Formatter
used for?
It is for printf-style formatting.
What is the problem with using the +
operator for string concatenation in Java?
It is slow, especially when concatenating many strings, because it operates in quadratic time due to string immutability.
**Quadratic Time: The number of steps it takes to accomplish a task is square of n.
True or false?
“Every time you concatenate strings with +
, a new string is created.”
True.
What should you use instead of +
for efficient string concatenation?
Use StringBuilder
to concatenate strings efficiently.
True or false?
“StringBuilder
is recommended because it does not require copying the string contents every time you append.”
True.
Besides concatenation, name one thing you can do with StringBuilder
that you cannot do with the +
operator.
StringBuilder
can reverse the string with its reverse()
method, among other functions.
Why is StringBuilder
more efficient than using the +
operator for string manupulation?
Because StringBuilder
modifies the existing string buffer instead of creating a new string with each operation, saving memory and time.