01 - 30 Flashcards
Narrowing conversion
- what is it?
- how to do?
o bigger than int
o equals / smaller than int
- bigger –> smaller
- bigger than int –> need casting
- equals / smaller than int –> do not need casting
implicit promotion:
- operand
- int argument –> accept char?
- operands of mathematical operators are ALWAYS promoted to AT LEAST int and the return value will be AT LEAST int
- method takes int as argument –> can also takes char
- -> char will be implicitly promoted to int
casting requirements (2)
- IS_A relationship
(left hand side = super class) - compatible data type
hierarchy Exception
-
what must be imported if want to use ArrayList?
import java.util.ArrayList;
o how to know the number of elements in Array and ArrayList
o length of String & StringBuilder
o array –> .length
o ArrayList –> .size()
o String & StringBuilder –> .length()
array delaration:
- new is required?
- new is not required?
o 1 line –> not required
o 2 line –> required
operator + when use with String (concatenation) –> vị trí của “ “ ảnh hưởng ntn?
-
how do derived classes use the variables and methods defined in the superclass?
directly as if they were defined in their own classes
properties of final:
o class o method o variable + how must it be initialized? o interface
- final class cannot be extended by another class
- final method cannot be overridden
- final variables cannot be reassigned a value but can call methods on this variable
o final variable must be explicitly initialized in the same line of code or initialization block - kein final interface
when is a variable marked as eligible to be garbage collected? (2)
- can know which are eligible but not sure when
- when this object can no longer be accessed
o object’s reference variable is assigned an explicit null value or is reinitialized
o this object goes out of scope
4 loại access modifiers + range of accessability
public > protected > default > private
can static method access non-static variable?
no
can use this and super in a static method?
no
super.method # BaseClassName.method?
BaseClassName.method only applies to static method
super –> no limit
can switch work with Array?
no
what type of methods cannot be overridden? (2)
static, final
define variables with the same name
local variables - instance variables
local variables - class / static variables
- operator precedence: highest and second heighest
- && và ||
- == và =
- postfix - unary
- && > ||
- == > =
overriding - overridden methods:
- return type of
o primitive
o object
- restrictivity of access modifiers
- what kind of method cannot be overridden?
- overriding: static and non-static method
- primitive = same
- object = same or subclass of overridden
- access modifiers of the overriding –> same or less
- cannot override final and static method
- cannot override/hide a static method with a non-static method and vice versa
initial size:
- ArrayList
- StringBuilder
ArrayList –> 10
StringBuilder –> 16
o method parameter is variable arguments –> what must it be? (2)
o meaning of variable arguments
o how to write?
o only 1 + last in parameter list
o (int… days)
WrapperClass:
o mutable? How to compare? o provide what mechanism? (2) o constructor accept what? (2) o can 2 primitive wrapper be compatible? o PrimitiveWrapper.MIN_VALUE + 1 =?
- immutable
- == operator –> compare with compatible primitive
- 2 primitive wrappers are never compatible
- primitive wrapper constructor accepts
+ compatible primitive value
+ the String representation - PrimitiveWrapper.MIN_VALUE + 1 == PrimitiveWrapper.MAX_VALUE
startsWith, endsWith
- what is?
- accepted type?
- determines whether a String starts / ends with a specified prefix, specified as a String
- only String with “ “
when instance variables and methods bind?
instance variables bind at compile time
methods bind at runtime
package:
o if present, how many time can a package statement appear? o can a class from default package be used in named packaged class? o how is default package imported in classes and interfaces defined in the same directory?
- if present, the package statement must appear exactly once in a class
- a class from a default package can’t be used in any named packaged class, regardless of whether they are defined within the same directory or not
- can define multiple classes and interfaces in the same Java source code file
- classes and interfaces defined in the same Java source code file cannot be defined in separate packages
import static or static import?
import static