why java does not contain pointers?
Answer Posted / bharathi
Java has no pointers but it has reference. A reference is an
abstract identifier for an object and it tags every object
with a name in the jvm so that programmer can refer to it.
And it is completely hidden from the programmer in any case.
Is This Answer Correct ? | 17 Yes | 1 No |
Post New Answer View All Answers
What java is used for?
What are access specifiers available in java?
Java Compiler is stored in JDK, JRE or JVM?
Explain about static nested classes in java?
What is functional interface in java example?
What is the basic concepts of OOPS?
What is core java used for?
Given a singly linked list, find the middle of the list in a single traversal without using temporary variable.
Can anonymous class have constructor?
how to create multithreaded program? Explain different ways of using thread? When a thread is created and started, what is its initial state? : Java thread
Define inheritance?
What is a method declaration?
Where is const variable stored?
Explain the difference between jvm and jre?
Explain which of the following methods releases the lock when yield(), join(),sleep(),wait(),notify(), notifyall() methods are executed?