After one month of break and returning from holiday it is time to start writing again. As a returning topic, I chose Java basics and core features, since it is easy to forget simple things after a long period of time and there is a huge four weeks of doing not much about technical stuff, it would be good to start with a refreshing topic.
In order not to make it very tedious, I will not cover all the simple things. Also, I will make a brief list of gists with no-specific order of topics. Without further ado, let’s get started.
access modifiers | class, method, variable modifiers | flow control | package control | primitives | error handling |
public | abstract | break | import | boolean | assert |
private | class | case | package | byte | catch |
protected | default | continue | char | finally | |
extends | default | double | throw | ||
final | do | float | throws | ||
implements | else | int | try | ||
interface | for | long | |||
new | if | short | |||
static | instanceof | ||||
synchronized | return | ||||
transient | switch | ||||
var | while | ||||
volatile |
Java is a platform-independent language. (write once run anywhere)
JVM is an environment to run compiled java classes.
Java doesn’t support multiple inheritances.
Local variables are declared in blocks, instance variables(null by default) are defined in classes.
Local variables are not initialized to any default value while fields are initialized to the default value.
Field, member variable, instance variable implies the same thing. Class variables are the ones that declared
static
.Declaring a variable is just deciding the type of it, defining is both declaration and initialization.
Local variables are stored in a stack along with function calls, while instantiated objects are stored in heap.
Variable stored in stack visible to owner Thread while object stored in heap visible to all threads.
Accessing stack memory is faster than accessing heap memory.
Reference for an object is stored in a stack whereas actual objects are stored in heap.
private
classes are not accessed outside of thepackage
.Only methods and fields can be declared as
protected
. Fields and methods in interfaces arepublic
by default.final
fields can’t be updated,final
methods can’t be overridden,final
classes can’t be inherited.static
(class) variables declared at the class level and all instances of the class will refer to the same variable.static
methods can be accessed and executed before the creation of the object.abstract
keyword is used with methods and classes. Abstract classes can’t be instantiated and don’t have to have an abstract method in order to be abstract.Interfaces can’t implement another interface but can inherit more than one interface with the
extends
keyword.Classes can’t extend more than one class, but can
implements
more than one interface.All methods in the interface have to be implemented in class. (not after Java 8, see default methods)
If there are no access modifiers for class, it will be package-private.
If there is no constructor, compile will provide the default constructor.
In order to call the constructor of the parent class
super()
, the constructor of the current classthis()
methods are used.Whereas abstract classes can have default methods with implementation, interfaces can’t (A caveat: with Java 8 interfaces have default methods)
In java all variables passed by value. When it is a primitive it is passed by actual value, when it is an object it is passed by the value of reference for that object (but still passed by value? confusing right!).
1public static void main(String[] args) {2 Person a = new Person("A");3 // name = A4 foo(a);5 // name = A6 bar(a);7 // name = B8}910static void foo(Person p) {11 p = new Person("B");12 p.setName("C");13}1415static void bar(Person p) {16 p.setName("C");17}Let’s say
a
is a reference in the memory denoted by 100. Firstly, we pass the value of the reference(100) to foo method. Localp
variable is 100 in foo method. When we create a new Person object and set its value to local valuep
it changes to a value other than 100, so we no longer have a connection to actual object, therefore we can’t modify it. After returning from foo method and passing reference value ofa
(which is still 100), we again create a local copy of reference asp
(100). When we set it to “C” in bar method, we are modifying object referenced by 100 which is our actual object.