0 votes
in JAVA by
Can you implement pointers in a Java Program?

1 Answer

0 votes
by

Java Virtual Machine takes care of memory management implicitly. Java's primary motto was to keep programming simple. So, accessing memory directly through pointers is not a recommended action. Hence, pointers are eliminated in Java. 

...