أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
Pointer is the variable which hold the address of the another variable in memory or it points to location of the variable in memory. In Java ,pointer is deprecated because of memory leak (misusing it like stack overflow) by overwriting the address which cause compromise your system.
Pointer is basically holds address of variable in memory.
A pointer is a value that points to an address in memory .
Like for example : int *x = fcd8; // would point to fcd8 address in the memory.
All languages use pointers , it doesn't have to be explicit .But the main reason for languages like Java to "hide them" is to simplify the programmers life.But other reasons could be security , not just protecting programs from hackers , but from the programmer himself. Things can go horribly wrong if you mess up using pointers. You could overwrite data you shouldn't be by simply doing x[ ] =0 in C++ where *( x ) is something you shouldn't be accessing.Try reading about buffer overflow attacks.
Also read about passing arguments to functions as parameters or addresses, might make things more clear for you.