473,322 Members | 1,403 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

Typedef or not

Consider these two:

Typedef struct { int foo, bar } FooBar;

struct FooBar { int foo, bar };

What woul be the only difference here; just that I can create new
instances by 'Foobar fb, *pfb', and the second demands that I prefix with
struct? struct FooBar fb, *pfb?
Thanks,

Ronny Mandal

--

Support bacteria - it's the only culture some people have!
Feb 28 '06 #1
8 2319


Ronny Mandal wrote:
Consider these two:

Typedef struct { int foo, int bar } FooBar; ^^^ - added
You can use the typedef name when declaring this structure.
Its a matter of prog. convenience.

FooBar *fb; // declares a variable 'fb' as a pointer to structure FooBar
FooBar fb1 = {1, 1}; // inits the members foo and bar with value '1'

struct FooBar { int foo, bar };
What woul be the only difference here; just that I can create new
instances by 'Foobar fb, *pfb', and the second demands that I prefix
with struct? struct FooBar fb, *pfb?
No FooBar *pfb would do !


Thanks,

Ronny Mandal

--

Support bacteria - it's the only culture some people have!


Feb 28 '06 #2
>Typedef struct { int foo, bar } FooBar;

struct FooBar { int foo, bar };


The only benefit out of this is that you dont have to use struct
keyword.

Cheers
Vishal

Feb 28 '06 #3
On Tue, 28 Feb 2006 17:59:39 +0530, Ravi Uday wrote:


Ronny Mandal wrote:
Consider these two:

Typedef struct { int foo, int bar } FooBar;

^^^ - added


You corrected a non-error ("int a, b" is fine although "int a, b;" is
preferred) and did not correct the error (Typedef != typedef).

--
Ben.
Feb 28 '06 #4
Ronny Mandal <ro*****@math.uio.no> wrote:
Typedef struct { int foo, bar } FooBar;

struct FooBar { int foo, bar };

What woul be the only difference here; just that I can create new
instances by 'Foobar fb, *pfb', and the second demands that I prefix with
struct? struct FooBar fb, *pfb?


Yes. There are, IYAM, only two cases in which this is useful:

- you are lazy and do not care about clarity;
- you are defining an abstract data type.

Richard
Feb 28 '06 #5
Ronny Mandal <ro*****@math.uio.no> writes:
Consider these two:

Typedef struct { int foo, bar } FooBar;

struct FooBar { int foo, bar };
It's important to post *correct* code. Both of the lines above have
syntax errors. It's "typedef", not "Typedef", and you need a semicolon
after the member declaration:

typedef struct { int foo, bar; } FooBar;

struct FooBar { int foo, bar; };

The meaning happened to be clear enough in this case, but errors like
this can often make it difficult or impossible to guess what you
really mean. If you're going to post code here, even a one-liner,
it's a good idea to run it through a compiler first, then
cut-and-paste it into your newsreader.
What woul be the only difference here; just that I can create new
instances by 'Foobar fb, *pfb', and the second demands that I prefix
with struct? struct FooBar fb, *pfb?


For the cases shown, yes, the only real difference is that with the
typedef you refer to the type as "FooBar", and without the typedef you
refer to the type as "struct FooBar". The first line:
typedef struct { int foo, bar; } FooBar;
declares an *anonymous* structure type, then creates an alias "FooBar"
for that type. The second line:
struct FooBar { int foo, bar; };
declares a structure type called "struct FooBar".

If you want the structure to contain a pointer to itself (say, for a
linked list or binary tree), you need to have a name for the type
within the type declaration itself. The typedef doesn't give you
this; the alias doesn't exist until after the end of the struct
declaration. With a struct tag, it's easy:

struct FooBar {
int foo;
int bar;
struct FooBar *next;
};

One common approach to this is to use a struct tag *and* a typedef:

typedef struct FooBar {
int foo;
int bar;
struct FooBar *next;
} FooBar;

You now have to names for the same type, "struct FooBar" (which can be
used inside the struct declaration) and "FooBar" which can be used
only after the end of the declaration). You can use the same
identifier for both, or you can really confuse things by using two
different identifiers.

If you're creating an abstract type (i.e., if code that uses the type
shouldn't even know that it's a structure), it makes sense to use a
typedef. Otherwise, IMHO, it's much simpler just to use the struct
tag. It requires a few extra keystrokes, but the Great Keystroke
Shortage was resolved years ago.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Feb 28 '06 #6
Ben Bacarisse <be********@bsb.me.uk> writes:
On Tue, 28 Feb 2006 17:59:39 +0530, Ravi Uday wrote:


Ronny Mandal wrote:
Consider these two:

Typedef struct { int foo, int bar } FooBar;

^^^ - added


You corrected a non-error ("int a, b" is fine although "int a, b;" is
preferred) and did not correct the error (Typedef != typedef).


Actually, the semicolon is required, even in C99.

Also, Ravi: please avoid using tab characters: the quoting prefixes
have now skewed your post.
Feb 28 '06 #7
# What woul be the only difference here; just that I can create new

Whatever makes it easier for you?

--
SM Ryan http://www.rawbw.com/~wyrmwif/
JUSTICE!
Justice is dead.
Mar 1 '06 #8
On Tue, 28 Feb 2006 20:41:34 GMT, Keith Thompson <ks***@mib.org>
wrote:
Ronny Mandal <ro*****@math.uio.no> writes: [corrected]
typedef struct { int foo, bar; } FooBar;
struct FooBar { int foo, bar; };
What woul be the only difference here; just that I can create new
instances by 'Foobar fb, *pfb', and the second demands that I prefix
with struct? struct FooBar fb, *pfb?


For the cases shown, yes, the only real difference is that with the
typedef you refer to the type as "FooBar", and without the typedef you
refer to the type as "struct FooBar". <snip>
If you want the structure to contain a pointer to itself (say, for a
linked list or binary tree), you need to [use the tag ...]

One common approach to this is to use a struct tag *and* a typedef:
[with the same name, or even different]


Agree so far; plus one other difference is that the struct-tag form
allows use of the same name in the same scope as an ordinary
identifier for something else, e.g. a variable. Whether it is a good
idea to do this is another kettle of fish entirely.

(Not in C++) You can even use it as a typedef for a _different_ type,
but if you do you deserve to be 'detained' in an unacknowledged CIA
prison for several decades. Well, maybe not quite that, but close. <G>

- David.Thompson1 at worldnet.att.net
Mar 6 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: joe | last post by:
hi, after reading some articles and faq, i want to clarify myself what's correct(conform to standard) and what's not? or what should be correct but it isn't simply because compilers don't...
14
by: dreamcatcher | last post by:
I always have this idea that typedef a data type especially a structure is very convenient in coding, but my teacher insisted that I should use the full struct declaration and no further...
4
by: Chris | last post by:
I've lurked around long enough... Time to interract =) I'm trying to make sense of the following. I can't quite wrap my head around what this is actually doing: ------------- typedef enum {...
15
by: Merrill & Michele | last post by:
typedef struct { WORD versionNumber; WORD offset; } MENUITEMTEMPLATEHEADER; This is from vol 5 of unnamed platform's programmer's reference. I could make this conforming by enclosing...
16
by: burn | last post by:
Hello, i am writing a program under linux in c and compile my code with make and gcc. Now i have 4 files: init.c/h and packets.c/h. Each header-file contains some: init.h: struct xyz {
12
by: vvv | last post by:
Hi All, Do we have anything in .NET which is equivalent to C++'s Typedef . Regards, Vasanth
6
by: Alex | last post by:
Hello people, I am getting errors from VS2003 when working with typedef'ed types. For example, assume that I have a type T, defined in a 3rd party include file based on some condition #if...
15
by: Ian Bush | last post by:
Hi All, I'm a bit confused by the following which is causing one of our user's codes fail in compilation: typedef struct SctpDest_S; 1) Is this standard ? 2) If so ( or even if not so ! )...
12
by: Googy | last post by:
Hi!! Can any one explain me the meaning of following notations clearly : 1. typedef char(*(*frpapfrc()))(); frpapfrc f; 2. typedef int (*(arr2d_ptr)()); arr2d_ptr p; 3. typedef int...
16
by: mdh | last post by:
A quick ? :-) question about Typedefs. There is a very brief discussion about this in K&R ( p146). Googling this group, there is a surprising dearth of questions about these. From one of the...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.