Please enable JavaScript.
Coggle requires JavaScript to display documents.
JAVA (Main principles (Polymorphism (Overloading (Consists int the methods…
JAVA
Main principles
Information hiding
This property implies that the characteristics of an object aren't accessible directly but through methods.
This permits for the "abstraction" of the real values of attributes.
Strength of the code
The memory is not managed by the user but from compiler that accesses to the memory cells and decides where to put the variables.
This limits the risk of crash of your computer, because the instruction can't contain the address of data stored elsewhere.
-
-
-
-
It is a OOP language
-
Objects
An object is the implementation of a class.
It requires to be initialized by the constructor.
The object has a state, which depends on the values of its attributes.
-