| What do you think why pointer are not used in Java?
Below are the three main points why Java not using pointers
(1)As we know pointer are unsafe and also increase the compleity of program so one reason why Java not use pointer.
(2)Java is also know for its simplicity in the code and pointer handling is little complex.
(3)As pointer relates to memory allocation on another hand Java used JVM which will handle memory allocation so there is no need of that. | | |