Holy Java Moly Flashcards
JVM
abstract machine. a specification that provides runtime environment in which bytecode can be executed
JRE
runtime environment which implements JVM and provides all class libraries and oter files taht JVM uses at runtime
JDK
tool necessary to compile, document and package Java programs. completely includes JRE
Synchronization
process which keeps all concurrent threads in execution to be in sync. avoids memory consistency errors caused due to inconisistent view of shared memory
Thread
path of execution for a process. can run concurrently and is controlled by programmer compared to processes
Wrapper Classes
each of java’s 8 primitive data types has a class dedicated to it. they “wrap” primitive data type into an object of that class.
The 8 Primitive Types
boolean, byte, char, int, float, double, long, short
Boxing
constructing the object
unboxing
extracting value from object.
autoboxing
converting primitive type to wrapper
OOPS
objects. can also pass by reference primitives
final
used to apply restrictions on class, method and variable. class can’t be inherited, method can’t be overridden and variable value cant be changed
finally
used to place important code, it will be executed whether exception is handled or not
finalize
used to perform clean up processing just before object is garbage collected. gc throws away objects that are no longer used. override finalize to utilize
StringBuffer
operations are thread-safe and synchronized. to be used when multiple threads are working on same String and StringBuilder in single threaded environment.
StringBuilder
not thread-safe. performance is faster because of no overhead of synchronized
String vs StringBuilder/Buffer
immutable vs mutable
stack memory
used only by 1 thread of execution. can’t be accessed by other threads. follows LIFO manner to free memory. exists until end of execution of thread. only contains local primitive variables and reference variables to objects in heap space
heap memory
used by all parts of the application. objects stored are globally accessible. memory management based on generation associated to each object. lives from start til end of app execution. whenever object is created, it’s always stored in heap space
arraylist
not syncrhonized and fast. increases by 50% if element is inserted. does not define increment size. can only use Iterator for traversing an ArrayList
vector
synchornized. slow and thread safe. doubles size of array when adding. defines the increment size. except hashtable, vectory is only other class which uses both Enumeration and Iterator
hashmap
non synchronized and not thread safe. allows 1 null key and multiple null values. faster, traversed by Iterator. inherits AbstractMap class. can synchronize by calling Collections.synchronizedMap(hashMap)
hashtable
synchronized. thread-safe and can be shared with many threads. doesn’t allow any null key/value. slow, internally synchronized and can’t be unsynchronized. traversed by Enumerrator and Iterator. inherits Dictionary class
equals()
defined in Object class and used for checking equality of two objects defined by business logic. COMPARES VALUES THEMSELVES
==
binary operator in Java used to compare primitives and objects. COMPARES REFERENCES