vote up 0 vote down star

Hi, I'm attempting to use the #define directive to change all of "ulong" to "unsigned long". Here is an example:

#define ulong unsigned long
ulong idCounter = 0;

Sadly, I think it ends up replacing ulong with "unsigned", rather than "unsigned long". I tried "#define ulong (unsigned long)", but that didn't worth either.

flag
3  
No, it shouldn't be. What makes you think that? And you should really be using a typedef instead of a #define. – Adam Rosenfield Oct 31 at 3:44
I found what my problem was, it was a screwup somewhere else in the code (I changed a #define to a const, but forgot to add "="). I'm kind of new to #defines, and was trying to understand them. I'll just use typedef in the future. – Anthony Oct 31 at 3:58
That's precisely why you shouldn't be using `#define`s. – aib Oct 31 at 9:43

3 Answers

vote up 10 vote down check

Better use a typedef. The reason your macro may fail is - it might not syntactically valid in some places. Consider:

double x = calc();
ulong v = ulong(x);

In this case, you get

unsigned long v = unsigned long(x);

This is not valid, because the cast form used is not compatible with the way you name the type (it has to consist of a simplier form, like a single word). Use a typedef:

typedef unsigned long ulong;
link|flag
I understand now; didn't know there was a significant difference. I'll refrain from using #define for substitution like that in the future. – Anthony Oct 31 at 4:00
Actually, I've never seen a cast done like that - I always do it as (ulong)x, which would work. But, if your syntax is valid (and I have no reason to doubt that, @litb), you raise a good point. +1. – paxdiablo Oct 31 at 4:15
1  
@paxdiablo, well it's a C++ only feature, C doesn't have this cast. It's the only one i can think of that would break here - not sure whether there are other places. For other things, there are other places tho that affect C too: #define intptr int* would break for intptr a, b; for example. Thanks for your trust, mate :) – Johannes Schaub - litb Oct 31 at 4:22
Then again, you can't write ulong long with a typedef. Not sure whether that proves the superiority of macros, or their inherent evil though ;) – MSalters Nov 2 at 10:49
vote up 8 vote down

why don't you use just typedef?

typedef unsigned long ulong;

Jack

link|flag
vote up 2 vote down

Your macro works OK:

cpp ulong.c

gives

# 1 "ulong.c"
# 1 "<built-in>"
# 1 "<command-line>"
# 1 "ulong.c"

unsigned long idCounter = 0;

I originally assumed that you already had a typedef called ulong and were trying to override that with the preprocessor, but other people have a different take on it. If you actually want the ulong, you should use a typedef, as they said.

link|flag

Your Answer

Get an OpenID
or

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