Please enable JavaScript.
Coggle requires JavaScript to display documents.
Java - Coggle Diagram
Java
Core
Basic
-
-
Data types
Integer (int, long, short, byte)
-
-
-
Operators
-
-
-
Assignment
assignment is a expression and return a value. For example: x = 5 will return a value '5', we can use like this y = x = 5
Increase and Decrease
postfix, for example: x++ or x--
prefix, for example ++x or --x
-
-
-
-
-
-
-
-
-
-
-