Q.
What is pointer In java?
Asked by ravidwivedishankar,
23 Mar '10 05:38 am
Earn 10 points for answering
Answers (3)
1.
Pointer initialization
When declaring pointers we may want to explicitly specify which variable we want them to point to:
1
2
int number;
int *tommy = &number;
The behavior of this code is equivalent to: ...more
Answered by suvendu dalai, 20 Apr '10 05:30 pm
When declaring pointers we may want to explicitly specify which variable we want them to point to:
1
2
int number;
int *tommy = &number;
The behavior of this code is equivalent to: ...more
Report abuse
Useful
(0)
Not Useful
(0)
Your vote on this answer has already been received
2.
In Java, a pointer is a reference that is guaranted not to be NULL
Answered by sudesh, 07 Apr '10 06:33 am
Report abuse
Useful
(0)
Not Useful
(0)
Your vote on this answer has already been received
3.
Report abuse
Useful
(0)
Not Useful
(0)
Your vote on this answer has already been received