vote up 6 vote down star

I looked through some code and noticed that the convention was to turn pointer types like

SomeStruct*

into

typedef SomeStruct* pSomeStruct;

Is there any merit to this?

flag

60% accept rate
Its common in C. Because you are trying to hide the fact that it is a pointer. This is the object you pass to all the interfaces in a library. In C++ it is not common and discouraged though not unheard of. – Martin York Apr 15 at 4:37

12 Answers

vote up 23 vote down check

This can be appropriate when the pointer itself can be regarded as a "black box", that is, a piece of data whose internal representation should be irrelevant to the code.

Essentially, if your code will never dereference the pointer, and you just pass it around API functions (sometimes by reference), then not only does the typedef reduce the number of *s in your code, but also suggests to the programmer that the pointer shouldn't really be meddled with.

This also makes it easier to change the API in the future if the need arises, for instance using an ID rather than a pointer (or vice versa). Since the pointer was never supposed to be dereferenced in the first place, existing code won't break.

link|flag
Real world example: in OS X, the CoreFoundation framework makes extensive use of this technique, referring to them as "opaque" data types. – htw Apr 15 at 3:32
Also in OS X: pthread_t is an opaque type; it is typedef'ed to be a pointer to a 'struct _opaque_pthread_t', which is itself an opaque array of bytes. – Adam Rosenfield Apr 15 at 4:42
Counter example: FILE *fp? Actually, I agree with you, but there is ample precedent for the contrary. – Jonathan Leffler Apr 15 at 4:56
1  
'Course, if you do this, you don't name the opaque type "pFoo". – MSalters Apr 15 at 8:59
And the key point is that when you declare a variable of this opaque type, then (outside the library that implements support for the type) you never apply variable->member; you only ever refer to variable and pass it to functions, etc. You don't increment or decrement the variable either. – Jonathan Leffler Apr 16 at 15:47
vote up 0 vote down

The purpose with typedef is to hide the implementation details, but typedef-ing the pointer property hides too much and makes the code harder to read/understand. So please do not do that.


If you want to hide implementation details (which often is a good thing to do), do not hide the pointer part. Take for instance at the prototype for the standard FILE interface:

FILE *fopen(const char *filename, const char *mode);
char *fgets(char *s, int size, FILE *stream);

here fopen returns a pointer to some structure FILE (which you do not know the implementation details for). Maybe FILE is not such a good example because in this case it could have worked with some pFILE type that hid the fact that it is a pointer.

pFILE fopen(const char *filename, const char *mode);
char *fgets(char *s, int size, pFILE stream);

However, that would only work because you never mess around with the content that is pointed to directly. The moment you typedef some pointer that you some places modify the code becomes very hard to read in my experience.

link|flag
vote up 0 vote down

Some time ago, i'd have answered "no" to this question. Now, with the rise of smart pointers, pointers are not always defined with a star '*' anymore. So there is nothing obvious about a type being a pointer or not.

So now i'd say : it is fine to typedef pointers, as long as it is made very clear that it is a "pointer type". That means you have to use a prefix/suffix specifically for it. No, "p" is not a sufficient prefix, for instance. I'd probably go with "ptr".

link|flag
Unless you don't intend it to be used as a pointer, in which case you can name it what you will. If it's just used to pass stuff around (like a C FILE *), does it matter exactly what it is? – David Thornley Apr 15 at 21:18
Good point. I was trying to add some pros to the list of cons that had been said against typedef'ing pointers... – Benoît Apr 16 at 5:48
vote up 2 vote down

It (like so many answers) depends.

In C this is very common as you are trying to disguise that an object is a pointer. You are trying to imply that this is the object that all your functions manipulate (we know it is a pointer underneath but it represents the object you are manipulating).

MYDB   db = MYDBcreateDB("Plop://djdjdjjdjd");

MYDBDoSomthingWithDB(db,5,6,7);
CallLocalFuc(db); // if db is not a pointer things could be complicated.
MYDBdestroyDB(db);

Underneath MYDB is probably a pointer at some object.

In C++ this is no longer required.
Mainly because we can pass things around by reference and the methods are incorporated into the class declaration.

MyDB   db("Plop://djdjdjjdjd");

db.DoSomthingWithDB(5,6,7);
CallLocalFuc(db);   // This time we can call be reference.
db.destroyDB();     // Or let the destructor handle it.
link|flag
vote up 1 vote down

Typedef is used to make code more readable, but making pointer as typedef will increase confusion. Better to avoid typedef pointers.

link|flag
vote up 3 vote down

This can help you avoid some errors. For example in following code:

int* pointer1, pointer2;

pointer2 is not an int *, it is simple int. But with typedefs this is not gonna happen:

typedef int* pInt;
pInt pointer1, pointer2;

They are both int * now.

link|flag
I see that more as a flaw in the C language – Unknown Apr 15 at 4:01
If you put the * touching pointer1 rather than touching "int", the declaration makes much more sense that pointer2 is not a pointer, just an int. – dreamlax Apr 15 at 4:34
I think C programmers would argue that using the dereferencing operator when declaring a pointer variable is more of an idiomatic thing. For examine, in K&R, they say: "'int *ip' intended as a mnemonic; it says that the expression '*ip' is an int." – htw Apr 15 at 4:38
2 dreamlax: it is still less readable and consistent code, declaring two variables of different types o one line. – Glorphindale Apr 15 at 6:00
This is the reason K&R write 'int pointer1' instead of 'int pointer1' and that's why I do the same. – Roalt Apr 15 at 10:58
show 3 more comments
vote up -1 vote down

Win32 API does this with just about every structure (if not all)

POINT => *LPPOINT
WNDCLASSEX => *LPWNDCLASSEX
RECT => *LPRECT
PRINT_INFO_2 => *LPPRINT_INFO_2

It's nice how it is consistent, but in my opinion it doesn't add any elegance.

link|flag
Thta's because the Win32 is a C API and it is common in C not C++ – Martin York Apr 15 at 4:36
The question is tagged both C and C++, what's your point exactly? – dreamlax Apr 15 at 7:38
vote up 13 vote down

The only time I use a pointer inside the typedef is when dealing with pointers to functions:

typedef void (*SigCatcher(int, void (*)(int)))(int);

SigCatcher old = signal(SIGINT, SIG_IGN);

Otherwise, I find them more confusing than helpful.

link|flag
Does this typedef with less punctuation work? "typedef void SigCatcher(int, void (*)(int))(int)" – sigjuice Apr 18 at 0:13
No; gcc says "error: SigCatcher declared as function returning a function". – Jonathan Leffler Apr 18 at 4:44
vote up 0 vote down

None whatsoever.

link|flag
vote up 3 vote down

This is a matter of style. You see this kind of code very frequently in the Windows header files. Though they tend to prefer the all upper case version instead of prefixing with a lower case p.

Personally I avoid this use of typedef. It's much clearer to have the user explicitly say they want a Foo* than PFoo. Typedef's are best suited these days for making STL readable :)

typedef stl::map<stl::wstring,CAdapt<CComPtr<IFoo>> NameToFooMap;
link|flag
vote up 2 vote down

It makes C code look more like Java, which might be comfortable for Java coders. I don't believe that it's idiomatic C, though, so it should be avoided.

link|flag
Not idiomatic C? The C I've looked at over the years has been full of this kind of construct! – Eddie Apr 15 at 4:36
vote up 31 vote down

Not in my experience. Hiding the '*' makes the code hard to read.

link|flag

Your Answer

Get an OpenID
or

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