vote up 4 vote down star
3

First: * I know what pointers are! *,

But,

I'm looking for a really good definition of them, one that is concise, simple, easy to understand, a "aha definition" something that will make someone with basic or more grasp of programming understand what pointers are.

I know pointers are generally hard to explain that's why I've asked this question, as it seems a pretty hard task for me to explain pointers so that the other end "gets it".

My simplest definition I could come up with is:

"a pointer is a integer number, that represents a memory address, and which is stored in a memory location (memory is used generically here: ram, registers ...)".

But this doesn't relate very well with programming languages.

P.S. Quotes from your favorite books/articles are welcome, but I'd appreciate a link to the original author.

P.S.2 Definitions in the scope of C/C++ are also welcome ;)

DUPLICATE: See In C++ I cannot Grasp Pointers and Classes and Understanding Pointers

flag

A second P.S. is usually P.S.S or P.P.S (post-subscript or post-postscript) - just some trivia – Zachary Yates Dec 18 '08 at 13:55
In fact it is not very hard to explain a pointer. The hard part comes up when you what to explain the difference between a pointer and a reference in C++! – Mehrdad Dec 18 '08 at 14:02

closed as exact duplicate by George Stocker Dec 23 '08 at 15:16

17 Answers

vote up 14 vote down check

Pointers

A pointer holds the address of a variable or method.

An address label on an envelope might be considered an instance of a pointer. It has your address on it, but it doesn't actually contain your home, it just tells others where your home is.

Pointer Types and Pointer Arithmetic

In some languages, such as C-based languages, the pointer type often indicates the type of instance that is to be expected at the target address. However, the existence of a pointer to an address does not guarantee the existence of a corresponding valid value at that target address or that the address itself is valid.

The type of a pointer can also provide the compiler with information used during pointer arithmetic whereby incrementing the pointer increments the targeted address by the number of bytes used to store the target type. For example, if a pointer targets type X and X has a size of 4 bytes, incrementing that pointer by 1 will actually increment the address targeted by that pointer by 4 bytes.

In the analogy of an address label on an envelope, the type of pointer is a street address which implies some form of residence or business can be found at that address, but it doesn't guarantee the existence of that residence or business. Adding 1 to the address would reference a different residence or business as opposed to say a different window, or door handle.

link|flag
The envelope analogy might be a little misleading, since envelopes typically hold things that are neither your address nor your home. :) – Adam Bellaire Dec 18 '08 at 13:54
I considered that, but it was the simplest analogy that came to mind. Maybe a telephone number would be a better example. – Jeff Yates Dec 18 '08 at 13:57
But a telephone number doesn't hold anything itself. In fact you might mean a variable that holds a telephone number, which complicates things! – Mehrdad Dec 18 '08 at 13:59
I think you should add the word "memory" to the definition in some way. You cannot have a pointer point to a variable in a register. – Mehrdad Dec 18 '08 at 14:04
That, technically, would be a language detail. Although I don't know of a language that allows pointers to registers, it isn't hard to conceive of one. – Jeff Yates Dec 18 '08 at 14:12
show 7 more comments
vote up 0 vote down

A pointer is a variable that stores an address memory.

"concise, simple, easy to understand"

It can has various types, according with the variable type.

For example:

#include stdlib.h

void main (void) {    

int v;
int *p;

//for now, the value stored in address pointed by p is unknown (this is dangerous).

v = 10;
p = &v;

//Now, the value stored in address pointed by p is ten because the value stored in p is the address of v. To get the value stored in the address pointed by p, just do as the example below.

printf ("%d", *p);

}

Regards,

Carlos Eduardo Olivieri

link|flag
vote up 0 vote down

A pointer is a forwarding address. If you wanted to write a letter to an author, you would send the letter to the publisher, who would forward it to wherever the author receives mail. If you refer to data through a pointer, the pointer forwards whatever you're doing to wherever the data really is.

link|flag
vote up 1 vote down

A pointer is a popular way to introduce bugs into your program. Specifically, it supports the bug of destroying a piece of data before you finished using it. Without pointers, any place in your program that needs to refer to some data would have to have its own copy of that data, making it impossible for another place in your program to destroy that data. But with pointers, a lot more possibilities for trashing data are opened up.

link|flag
vote up 0 vote down

Very simply "a pointer tells where to find something". Just like a finger pointing to something on the other side of the room.

I know this is not a "programming" answer, but it still applies at least in my opinion.

link|flag
vote up 1 vote down

A big, ugly bill collector comes to me looking for you.

If I point across the room to you, then I am using a standard variable. If I give him your home address, then I am using a pointer.

In most languages, intrinsic data types use standard variables, and objects use pointers, or reference variables, to refer to the object.

In either case, if I were a friend, I'd send him after someone else, unless you owed me money too.

link|flag
vote up 6 vote down

Got my analogy hat on.

I like where dna123 was going with the book thing:

Think of your computer's memory as a book. Each page has some information on it. Now, if I want to give you the information that's on page 32 of a book, I can take the book, go to a photocopier, make a copy of page 32, hand you the copy. Or I can say: You want the information on page 32.

The pointer is '32'.

Why do we use pointers? You can guess a couple of good reasons from the analogy above:

  1. It's quicker and easier to just give you '32' than to go through the work of photocopying the page
  2. If the information on that page changes then '32' is guaranteed to give you the most current info (here the analogy falls apart a little, since computer memory is generally more dynamic than book pages, but I don't know, maybe someone wrote margin notes or something)
  3. If you want to modify the information in such a way that I can see it, you can just add your margin notes to page 32, knowing that I'll see them

There's lots more complexity, but that's the basic idea.

link|flag
This is a great idea, because you can number the pages AND the paragraphs. So it brings in types of pointer. currentPage++ usually moves a different distance through the book than currentParagraph++ does. – Earwicker Dec 18 '08 at 16:18
Nice explanation - it gives a clear analogy for someone new to the topic. Earwicker's type explanation is very good too. – geoglyph Dec 18 '08 at 17:33
.. and if someone rips out the page in a book, and you try to use your pointer, then you have an exception. :) Also, if someone inserts a page and renumbers, then your old pointer may point to something unintended. – dblack Dec 18 '08 at 17:57
vote up 0 vote down

Think pointer as key holder with name.This key holder will always have room key for president since it is names as president's key holder.

Then it becomes easy for any body to get the president room by getting the room number inscribed on key placed in president's key holder.

As like key holder, pointer will hold address of some memory location.By using point we are able to navigate to the pointed memory location

link|flag
vote up 1 vote down

If you want to read the contents of a book (object) while in a library (program) you go to the librarian to request it.

She may have the book in her stack and give it to you or she may point you (give you the physical shelf/row address) to the shelf (location in memory) where it really exists.

link|flag
vote up 0 vote down

A pointer alleviates or prevents data and code duplication in memory.

Some say, indirection, to those, I say :P

link|flag
vote up 1 vote down

Oddly enough, I've found pointers to be one of the easiest things to understand. It could be that my second programming language was 6502.

At any rate, I've always just viewed that the machine is a vast array of memory and every memory location has an address. When you set a variable (that is not in a register), all you're ever doing is writing into an address in memory. A pointer is a variable that represents an address. It's the difference between talking to Bill Clinton sitting next to you or having his cell number and giving him a call to find out where the best taco stand is.

link|flag
vote up 1 vote down

I know that it took me quite a while to wrap my head around this concept. Not until I had to do some serious work in C with Win32 API did I fully understand them.

I therefore think that a definition, no matter how concise and simple, will likely not be enough. It might be a good starting place, but you should also show illustrations (try to draw "memory" and variables in them) and lots of real code examples, ranging from simple pass-by-reference to dynamic data structures like linked lists and trees.

Take it small-step-by-small-step. Pointers are one of the most difficult concepts in CS for beginners to understand. They require a very abstract thinking.

As for the definition to go with - I'd go with your initial definition about an integer that denotes a memory address. This will also be easy to illustrate with a drawing.

link|flag
vote up 0 vote down

a pointer is a value that identifies the location of an object in memory

if you're explaining this to Jim, put a book on a table and ask Jim where the book is; if he points to it, he should understand

link|flag
vote up 1 vote down

A pointer is a high-level representation of a memory address. The confusion surrounding them stems from the fact that they are used for multiple purposes. Here are the most common uses, as listed in Code Reading.

  • to construct linked data structures,
  • to reference dynamically allocated data structures,
  • to implement call by reference,
  • to access data elements and iterate through them,
  • when passing arrays as arguments,
  • for referring to functions,
  • as an alias for another value,
  • to represent character strings, and
  • for direct access to system memory.
link|flag
vote up 6 vote down

eh.... so you want some pointers on pointers? Oh you mean you wanna get a Handle on it?

Tony

link|flag
Funny! You might want to wiki this answer though. Some people don't have a sense of humour (or humor - there's 'mericans around here too). – Jeff Yates Dec 18 '08 at 13:52
thanks.... but what does that do? – Tony Lambert Dec 18 '08 at 13:56
It means that if people give negative votes, it won't affect your reputation (you also don't get positive reputation either). – Jeff Yates Dec 18 '08 at 13:57
vote up 1 vote down

Pointer doesn't hold value of a variable. Pointer is a "link" to a memory that hold value(s).

I think it's the shorter, concise, simple and easier way to explain it.

link|flag
vote up 2 vote down

A pointer is a variable that represents a memory address.

In fact, adding anything to this definition might limit the scope of the definition. For example the definition you specified, "an integer number that ..." is not always true. A pointer is not really a simple integer in languages such as C#. In C#, a pointer is totally different from a simple number as it might change during the execution of program by the garbage collector.

link|flag
Very good observation, when people say pointers are hard to explain, they are not kidding :) – Pop Catalin Dec 18 '08 at 13:52
In fact, in a computer, everything is a sequence of bits (=an integer)! But is it the best explanation for things? I doubt it. It's not really a simple concept. If you look at an x86 from a low level perspective, the hardest thing a CPU does is probably mov eax, [eax]! – Mehrdad Dec 18 '08 at 13:56

Not the answer you're looking for? Browse other questions tagged or ask your own question.