Intermediate Flashcards
What are arrays in java?
An array is an object containing a fixed number of values of the same type
What are varargs?
- Varargs are used to pass an arbitrary number of arguments to a method but we can also pass an array directly as the argument
- Each method can only have one varargs parameter and the varargs parameter needs to be the last argument
What is the disadvantage of varargs?
They can lead to Heap Pollution
What does the static keyword mean?
The static keyword means that the particular member belongs to a type itself, rather than to an instance of that type
What is important about static fields (class variables)?
A SINGLE copy of that field is created and shared among all instances of that class, this static variable is stored in the heap memory
When to use static fields?
- When the value of the variable is independent of objects
- When the value is supposed to be shared across all objects
What is important about static methods?
- Static methods belong to a class not an object and cannot be overwritten
- Static methods cannot use this or super keywords
When to use static methods?
Static methods are used to access or manipulate static variables and other static methods that do not depend upon objects; static methods are widely used in utility and helper classes
What is the benefit of static classes?
A static class allows to create a class within a class and provides a way of grouping elements that are only used in one place -> keeps the code more organized and readable
In what two types can nested class architecture be divided?
- Nested classes that are declared as static are called static nested classes
- Nested classes that are non-static are called inner classes
What is the difference between inner classes and static nested classes?
Inner classes have access to all members of the enclosing class, whereas static nested classes only have access to static members of the outer class
Why to use static nested classes?
- Grouping classes that will be used only in one place increases encapsulation
- Code is closer to the place where it will be used -> Increases readability, and maintainability
What are enums?
- The keyword enum denotes a special type of class that always extends the java.lang.Enum class
- Enum is short for enumerations
- Basic example for enum is days of the week
- Enum declaration looks similar to a class declaration
- Enum entries are typically written in uppercase
- Enums can have fields and a constructor
What are implementation design patterns using enums?
- Singleton Pattern
- Strategy Pattern
What does the final keyword mean?
- The final keyword allows to set limitations on extensibility -> classes marked as final cannot be extended
- The final keyword in a class declaration does not mean that the objects of this class are immutable, we just cannot extend it
- Methods marked as final cannot be overwritten
- Variables marked as final cannot be reassigned -> once a final variable is initialized, it cannot be changed
- A final reference variable cannot be reassigned but that does not mean that the object it refers to is immutable -> the properties of this object can be changed freely
What is the aim of generics?
The aim of generics is to reduce bugs and add an extra layer of abstraction over types
When are generics useful?
Generics are useful if you would run into a code duplication like e.g. an IntegerPrinter class or a StringPrinter class where all classes would hold the exact same code only the types of the variables would be different -> What we want is one class that is flexible for many different types
What are generic wildcards?
Todo is to print a list containing any type of thing -> Use a ? as a type parameter in the angle brackets
What is one restriction of generics in java?
One restriction is that the type parameter cannot be a primitive type, because generics are a compile-time feature, meaning the type parameter is erased and all generic types are implemented as type object
How to read and write user input in java?
- Reading from system.in
- Writing to system.out
- Using the console class for input and output
What are checked exceptions?
- Checked exceptions represent errors outside the control of the program
- They are verified at compile-time
- The throws keyword is used to declare a checked exception
What are unchecked exceptions?
- Unchecked exceptions reflect some error inside the program logic
- They are not verified at compile-time
What are common unchecked exceptions?
NullpointerException, ArrayIndexOutOfBoundsException and IllegalArgumentException
How to remember when to use checked and unchecked exceptions?
If a client can reasonably be expected to recover from an exception, make it a checked exception. If a client cannot do anything to recover from the exception, make it an unchecked exception
What are the main reasons for introducing custom exceptions?
- Business logic exceptions -> exceptions that are specific to the business logic and workflow. These help the application users or developers to understand what the exact problem is
- To catch and provide specific treatment to a subset of existing java exceptions
How to create custom checked and unchecked exceptions?
- Custom checked exceptions have to extend the java.lang.Exception class
- Custom unchecked exceptions have to extend the java.lang.RuntimeException
What is try with resources?
Try with resources allows us to declare resources to be used in a try block with the assurance that the resources will be closed after the execution of that block
What is an effectively final variable?
Effectively final means the variable does not change after the first assignment
When are the Comparator and Comparable interfaces useful?
When working with custom types, or trying to compare objects that are not directly comparable, we need to make use of a comparison strategy -> Make use of Comparator and Comparable interfaces
What is Comparable?
Comparable is an interface defining a strategy of comparing an object with other objects of the same type. This is called the classes “natural ordering”
What is Comparator?
The comparator interface defines a compare(arg1, arg2) method with two arguments that represent compared objects, and works similarly to the Comparable.compareTo() method
When to use Comparator or Comparable?
- Comparable interface is a good for defining the default ordering, it is the main way of comparing objects
- Sometimes we cannot modify the source code of the class whose objects we want to sort, thus making the use of Comparable impossible -> Comparator allows us to avoid additional code to our domain classes
What is a list?
A list represents an ordered sequence of values where some value may occur more than one time
What is an arraylist?
An arraylist is one of the list implementations built atop an array, which is able to dynamically grow and shrink as you add and remove elements
What is a linkedlist?
A linkedlist is a doubly-linked list implementation of the list and dequeue interfaces which implements all optional list operations and permits all optional list operations and permits all elements including null
What is the difference between arraylist and linkedlist?
- Arraylist is faster in random access than linkedlist
- Insertion, addition and removal operations are faster in linkedlist
- linkedlist consumes more memory
What are features of a hashset?
- It stores unique elements and permits null
- It is backed by a hashmap
- It does not maintain insertion order
- It is not thread-safe
When is a hashset useful?
Useful whenever you want a collection of your elements without any duplicates and the particular order is not important
What is a typical use case for hashset?
Removing duplicate items from a list
What are other possible set implementations?
- TreeSet
- LinkedHashSet
How does a hashset maintains uniqueness?
- When we put an object into a hashset, it uses the object’s hashcode value to determine if an element is not in the set already
- Each hashcode value corresponds to a certain bucket location which can contain various elements, for which the calculated hash value is the same. But two objects with the same hashcode might not be equal. So, objects within the same bucket will be compared using the equals() method
What is the rule of thumb for the performance of a hashset?
- A high initial capacity is good for a large number of entries coupled with little to no iteration
- A low initial capacity is good for few entries with a lot of iteration
What is a hashmap?
Hashmap is a map with key-value mapping, which means that every key is mapped to exactly one value that we can use the key to retrieve the corresponding value from a map
What is the advantage of a hashmap?
The advantage of a hashmap is that the time complexity to insert and retrieve a value is O(1) on average
What is an iterator and what are its pros and cons?
- An iterator is one of many ways we can traverse a collection
- Iterators made it possible to remove elements from a collection we are iterating over
- Iterators do not guarantee the iteration order
What is an anonymous inner class?
- Is like a nested class without a name; it provides a class definition and instantiates it at the same time
- Implements functional interfaces and abstract classes without creating additional sub-classes
What is a lambda expression?
- Implements functional interface
- Is essentially a method definition without a name
- Makes code more concise and readable
- Provides a way to pass a function as a method argument
Anonymous class vs. lambda expression?
- Anonymous classes are used for interfaces and abstract classes
- Lambda expressions are only used for functional interfaces
What are functional interfaces?
Functional interfaces are interfaces that have exactly one method
How is the performance of lambda expressions compared to anonymous classes?
Lambda expression is better compared to the anonymous class in terms of performance because an anonymous class lead to an extra class file on the compilation, this takes additional time during class loading and verification during runtime