show/hide this revision's text 2 added about.com link

You probably have used pointers, but you just don't know it. A class variable is a pointer, a string is a pointer, a dynamic array is a pointer, Delphi just hides it for you. You will see them when you are performing API calls (casting strings to PChar), but even then Delphi can hide a lot.

See Gamecats answer for advantages of pointers.

In this About.com article you can find a basic explanation of pointers in Delphi.

show/hide this revision's text 1

You probably have used pointers, but you just don't know it. A class variable is a pointer, a string is a pointer, a dynamic array is a pointer, Delphi just hides it for you. You will see them when you are performing API calls (casting strings to PChar), but even then Delphi can hide a lot.

See Gamecats answer for advantages of pointers.