31 - 60 Flashcards
NumberFormatException
o base class o function?
o thrown to indicate that the application has tried to convert a string (with an inappropriate format) to one of the numeric types
o subclass of IllegalArgumentException
ClassCastException –> what is?
is thrown when an object fails an IS-A test with the class type to which it’s being cast
if not overload toString() –> what will be printed?
object’s name + hashCode()
can use “this” within static Method?
no
order of execute (2)
o direct superclass must be initialized
o SIC way
what is for-each loop?
How to read: for(String day : days)
enhanced for loop
which kind of access modifiers can be set to top class?
public, default
no protected & private
short b = 3;
b += 4.6;
output? Nguyên tắc cast của operand
o implicit cast to the type in left
o result = 7
cách viết main method
public static void main(String[] args){
public static void main(String args[]){
static public void main(String args[]){
how many public class / interface can be in a Java file? Name?
only 1 + same name as this file
limit of enhanced for loop with: array, collection
- cannot be used to initialize an array + modify its elements
- cannot be used to delete or remove the elements of a collection
- can’t iterate over multiple collections or arrays in the same for-each loop
exception handling –> order of exception
derived class –> base class
where in the constructor can super, this be used?
first statement
exception
o overriding - overridden method
o constructor - base constructor
overriding method / constructor can
- only throw
1. 1. exceptions that are declared in the throws clause of the overridden method
1. 2.exceptions that are subclasses of the declared exceptions - choose NOT to throw any exception
if a method uses another method that may throw a checked exception –> what does this method need? (2)
- the method should be enclosed within a try-catch block
- the method should specify this exception to be thrown in its method signature
throw keyword:
- base class does not throw exception –> derived class?
- which kinds of exception can base class throw freely?
- cannot throw an exception only applying to checked exception
- Errors and Runtime Exception
what should a class do when it implements an interface? (2)
- when a class implements an interface, it should implement all of the methods defined by this interface
- if it doesn’t, it must be defined as an abstract derived class
a call needs to be wrapped up in try / catch block or with throws clause –> depend on class of reference or class of actual object?
class of reference
overridden method has throw –> does overriding have to have?
overriding method may choose to have no throws clause even if the overridden method has a throws clause
can use “this” within static Method? Use “this” to access static variable?
Can write: this.i = 4?
not within static method. Can use to access static variable
this.i = 4 –> wrong –> cannot use like a local variable
IllegalStateException & IllegalArgumentException
- IllegalArgumentException: specify that a method has passed illegal or inappropriate arguments
- IllegalStateException: signals that a method has been invoked at an illegal or inappropriate time
class A implements interface I class B expends class A
–> can class B use interface I?
can
when base class implements an interface, derived class can use this interface without implementing it
members of an interfaces are implicitly?
all members of an interface are implicitly abstract and public, static, final
what happens when a constructor in a subclass is invoked?
- when a constructor in a subclass is invoked, some constructors of its superclass have to be invoked first
+ explicitly call it
+ or the compiler will add super() as the first line of the subclass constructor
- baseclass has to have a no args constructor
many overloaded methods with many “appropriate” parameters –> choose
- compiler always tries to choose the most specific method available with least number of modifications to the arguments
- Java designers have decided that old code should work exactly as it used to work before boxing-unboxing functionality became available
- Widening is preferred to boxing/unboxing (because of rule 2), which in turn, is preferred over var-args ===> widening > boxing / unboxing > var-args
- trim() is method of?
- trimToSize() is method of?
- trim() is method of String
- trimToSize() is method of ArrayList
ExceptionInInitializerError –> when?
is typically thrown by the JVM when a static initializer in the code throws any type of RuntimeException
how to write octal & binary number?
binary number begins with 0b…. + not L, D, F in suffix
Octal –> 0… (không có b hoặc B) + not L, D, F in suffix
abstract method –> body? What does a method body look like? What does that mean?
Access modifier
static?
no. Body { }
no block. Only semicolon
no private
cannot static
precedence: == và =
precedence: == > =