473,403 Members | 2,366 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,403 software developers and data experts.

casting of structs

Consider the following code:

struct X { float f; };
struct Y { struct X x; };

void func(struct X *x) {}

int main(void) {
struct Y y;
func(&y);

return 0;
}

Ok, there's two structs. One struct X with some member and struct Y that has
a struct X as the first member. In OO terms we say that Y inherits from X.
Therefore, struct Y can safely be used as a struct X right? Is the above
legal code, can we call func() without casting Y * to X *?
My compiler accepts it without warning and I think it should.
Nov 14 '05 #1
8 5110
"Servé Lau" <i@bleat.nospam.com> spoke thus:
struct X { float f; };
struct Y { struct X x; };
(etc.) My compiler accepts it without warning and I think it should.


cat b.c

struct X { float f; };
struct Y { struct X x; };

void func(struct X *x) {}

int main(void) {
struct Y y;
func(&y);

return 0;
}

gcc -Wall -pedantic -O2 -ansi b.c

b.c: In function `main':
b.c:8: warning: passing arg 1 of `func' from incompatible pointer type

I don't think your compiler is doing you any favors by accepting your
code without issuing a diagnostic.

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Nov 14 '05 #2
"Christopher Benson-Manica" <at***@nospam.cyberspace.org> wrote in message
news:bs**********@chessie.cirr.com...
I don't think your compiler is doing you any favors by accepting your
code without issuing a diagnostic.


Why not? Is it not true that all pointers to Y can be used as a pointer to
X?
Nov 14 '05 #3
"Servé Lau" <i@bleat.nospam.com> wrote in message
news:bs**********@news3.tilbu1.nb.home.nl...

In the context of...
struct X { float f; };
struct Y { struct X x; };
"Christopher Benson-Manica" <at***@nospam.cyberspace.org> wrote in message
news:bs**********@chessie.cirr.com...
I don't think your compiler is doing you any favors by accepting your
code without issuing a diagnostic.


Why not? Is it not true that all pointers to Y can be used as a pointer to
X?


No. A pointer to a structure can be portably /converted/ to a pointer to the
first element of the structure and back. Please note the word 'converted'.
On most PC-based platforms, the pointers will even be binary equivalent, but
it does not necessarily have to be the case.

If you want to simulate OOP inheritance in C, do something like:

In the context of...

struct X { /* fileds */ };
struct Y { struct X x; /* more fields */ };
....
type function (struct X *);
....
int main (void)
{
struct Y y;
func(&y.x); /* note .x */
return 0;
}
Nov 14 '05 #4
In article <bs**********@news3.tilbu1.nb.home.nl>,
Servé Lau <i@bleat.nospam.com> wrote:
[one "struct" contains another whole, so that &y.x has type "struct X *",
and:]
void func(struct X *x) {}

int main(void) {
struct Y y;
func(&y);

return 0;
}

Ok, there's two structs. One struct X with some member and struct Y that has
a struct X as the first member. In OO terms we say that Y inherits from X.
In "proper" OO terms the member named y.x (of type "struct X")
should be able to go anywhere, not just first.
Therefore, struct Y can safely be used as a struct X right?
In C89 and C99, only via conversions.
Is the above legal code, can we call func() without casting Y * to X *?
My compiler accepts it without warning and I think it should.


C89 and C99 both require diagnostics.

Plan 9 C, which is a different language from both C89 and C99,
allows this kind of call. It works even if "y.x" is not the
first member, too -- the call has the same effect as func(&y.x).
However, the definition for struct Y must read rather differently:

struct Y {
int any, stuff, you, like;
struct X; /* inherit all of struct X's members */
int more, things, ifdesired;
};

I am not quite sure what Plan 9 C says must occur if "struct X"
has members whose names conflict with those of "struct Y" (exclusive
of "struct X" of course). Moreover, what does it mean if you
try to inherit from the same datatype more than once? For
instance:

struct Point { int x, y; };

struct Rectangle {
Point; /* e.g., upper left corner */
int w, h; /* width and height */
};

is OK, but what about:

struct Rectangle {
Point;
double x; /* error? ok? */
};

and clearly:

struct Rectangle {
Point; /* upper left */
Point; /* lower right */
};

is right out. :-)
--
In-Real-Life: Chris Torek, Wind River Systems
Salt Lake City, UT, USA (40°39.22'N, 111°50.29'W) +1 801 277 2603
email: forget about it http://web.torek.net/torek/index.html
Reading email is like searching for food in the garbage, thanks to spammers.
Nov 14 '05 #5
"Servé Lau" <i@bleat.nospam.com> wrote:
Consider the following code:

struct X { float f; };
struct Y { struct X x; };

void func(struct X *x) {}

int main(void) {
struct Y y;
func(&y);
This line is a constraint violation, a conforming compiler must
issue a diagnostic for the code. For example:
slau.c:8: warning: passing arg 1 of `func' from incompatible pointer type
return 0;
} Ok, there's two structs. One struct X with some member and struct Y
that has a struct X as the first member. In OO terms we say that Y
inherits from X. Therefore, struct Y can safely be used as a struct
X right?
Yes, it can, so long as you convert the pointer properly.
Is the above legal code, can we call func() without casting
Y * to X *? My compiler accepts it without warning and I think
it should.


No, you must use a cast to convert from Y* to X*. Any compiler that
accepts it without a diagnostic (either warning or error) is not
a standard-conforming compiler or not being invoked with the right
options (such as GCC's -ansi -pedantic).

--
Simon.
Nov 14 '05 #6
On Fri, 26 Dec 2003 20:44:59 +0100, "Servé Lau" <i@bleat.nospam.com>
wrote in comp.lang.c:
Consider the following code:

struct X { float f; };
struct Y { struct X x; };

void func(struct X *x) {}

int main(void) {
struct Y y;
func(&y);

return 0;
}

Ok, there's two structs. One struct X with some member and struct Y that has
a struct X as the first member. In OO terms we say that Y inherits from X.
There are no OO terms in C.
Therefore, struct Y can safely be used as a struct X right? Is the above
legal code, can we call func() without casting Y * to X *?
My compiler accepts it without warning and I think it should.


Either your compiler is broken, or you are using it in a
non-conforming mode.

C is a typed language. Regardless of location in memory, a pointer to
a struct X is not a pointer to a struct Y or a pointer to a float.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++ ftp://snurse-l.org/pub/acllc-c++/faq
Nov 14 '05 #7
Peter Pichler <pe***********@tiscali.co.uk> spoke thus:
No. A pointer to a structure can be portably /converted/ to a pointer to the
first element of the structure and back.


FMI, can you quote the portion of the Standard that allows this?
Consider my curiousity piqued :)

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Nov 14 '05 #8
Christopher Benson-Manica wrote :
Peter Pichler spoke thus:
No. A pointer to a structure can be portably /converted/ to a pointer to the first element of the structure and back.


FMI, can you quote the portion of the Standard that allows this?
Consider my curiousity piqued :)


Ehm, did I manage to make a fool of myself /again/? ;-)

No quote, just my simplified interpretation of 6.7.2.1:
....
13 Within a structure object, the non-bit-field members and the units in
which bit-fields reside have addresses that increase in the order in
which they are declared. A pointer to a structure object, suitably
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
converted, points to its initial member (or if that member is a
bit-field,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
then to the unit in which it resides), and vice versa. There may be
^^^^^^^^^^^^^^
unnamed padding within a structure object, but not at its beginning.
Nov 14 '05 #9

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

Similar topics

5
by: Paminu | last post by:
Why make an array of pointers to structs, when it is possible to just make an array of structs? I have this struct: struct test { int a; int b;
7
by: Marc W. | last post by:
I have been trying to cast an object I am getting from a SortedList for some time now, into the object it is supposed to be, but it just won't work. Here is the code: ...
4
by: kelli | last post by:
i am new to c# so if this is a trivial problem, forgive me! i've searched the web and after 2 days still cannot solve it. i am converting a c++ application to c# - the problem code is listed...
14
by: Yurik | last post by:
A question to the C# language experts: Why isn't this code valid? static void Foo( out string s ) { s = "test"; } static void Main( ) { object s; // *** Accept any out type!
44
by: Agoston Bejo | last post by:
What happens exactly when I do the following: struct A { int i; string j; A() {} }; void f(A& a) { cout << a.i << endl;
17
by: goldfita | last post by:
I saw some code that appeared to do something similar to this struct foo { char offset; int d; }; struct foo { int a; int b;
8
by: tom | last post by:
Hi All, I'm stuck whit an issue I can't seem to resolve in C#: I have an arry of bytes which I would like to "recast" to an array of structs with an Explicit layout. I tried the...
23
by: Leif Gruenwoldt | last post by:
Is it possible to safely cast a struct to a class? The contents of both are the same size, however there is the issue of the class having virtual functions which make the size of the class slightly...
61
by: Marty | last post by:
I am new to C# and to structs so this could be easy or just not possible. I have a struct defined called Branch If I use Branch myBranch = new Branch(i); // everything works If I use Branch...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.