473,799 Members | 3,298 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Union with anonymous struct


You know how from time to time, you want to have an array which you can
access via:

array_name[element];

But also, you'd like the more user-friendly option:

array_name.elem ent1
array_name.elem ent2

I believe that some people use a union with an anonymous struct for this
(which is not legal Standard C++) as follows:

union Week
{
unsigned days[7];

struct
{
unsigned monday;
unsigned tuesday;
... //and so on
};
} christmas_week;
Well firstly, even if anonymous structs *were* legal, the above code would
still not necessarily work as expected - to be specific, "tuesday" doesn't
necessarily have the same address as days[1], and why? padding.

So... the following is my way of doing it. The only drawback is that it's no
longer an aggreagate nor a POD:

struct Week
{
unsigned days[7];

unsigned &monday;
unsigned &tuesday;
... //and so on

Week() : monday( days[0] ), tuesday( days[1] ) //and so on
};
-JKop
Jul 22 '05 #1
5 2730

"JKop" <NU**@NULL.NULL > wrote in message
news:1x******** ***********@new s.indigo.ie...

You know how from time to time, you want to have an array which you can
access via:

array_name[element];

But also, you'd like the more user-friendly option:

array_name.elem ent1
array_name.elem ent2

[SNIP]

Whether the second option is more userfriendly is arguable. However, you
could use a map with strings as keys if you deem this more legible or
user-friendly.

Chris
Jul 22 '05 #2
Good work. However, your struct will probably require twice as much
memory as the union solution.

Also, padding shouldn't be a problem with ints, but there certainly is
no definite way to tell.

BTW, why is anonymous structs illegal in unions ? Will allowing it
create any specific problem ?

-Arijit

JKop <NU**@NULL.NULL > wrote in message news:<1x******* ************@ne ws.indigo.ie>.. .
You know how from time to time, you want to have an array which you can
access via:

array_name[element];

But also, you'd like the more user-friendly option:

array_name.elem ent1
array_name.elem ent2

I believe that some people use a union with an anonymous struct for this
(which is not legal Standard C++) as follows:

union Week
{
unsigned days[7];

struct
{
unsigned monday;
unsigned tuesday;
... //and so on
};
} christmas_week;
Well firstly, even if anonymous structs *were* legal, the above code would
still not necessarily work as expected - to be specific, "tuesday" doesn't
necessarily have the same address as days[1], and why? padding.

So... the following is my way of doing it. The only drawback is that it's no
longer an aggreagate nor a POD:

struct Week
{
unsigned days[7];

unsigned &monday;
unsigned &tuesday;
... //and so on

Week() : monday( days[0] ), tuesday( days[1] ) //and so on
};
-JKop

Jul 22 '05 #3

"Arijit" <pa*****@yahoo. co.in> wrote in message
news:df******** *************** **@posting.goog le.com...
Good work. However, your struct will probably require twice as much
memory as the union solution.

Also, padding shouldn't be a problem with ints, but there certainly is
no definite way to tell.

BTW, why is anonymous structs illegal in unions ? Will allowing it
create any specific problem ?


Anonymous structs are not legal at all, in unions or otherwise.

john
Jul 22 '05 #4
John Harrison wrote:

Anonymous structs are not legal at all, in unions or otherwise.

There's not even a definition of that term. But if you take the
C++ defintion of anonymous union and replace union with struct,
it isn't legal.
Jul 22 '05 #5
JKop wrote:
So... the following is my way of doing it. The only drawback
is that it's no longer an aggreagate nor a POD:
Nice, but the other drawback is that it's twice the size of
the original structure.
struct Week
{
unsigned days[7];

unsigned &monday;
unsigned &tuesday;
... //and so on

Week() : monday( days[0] ), tuesday( days[1] ) //and so on
};

Jul 22 '05 #6

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

Similar topics

2
8955
by: alexwu | last post by:
typedef union _MYUNION struct { short a; short b; }; long c; } MYUNION;
1
2342
by: Michael B Allen | last post by:
Consider the following structure with a union: struct shape { int type; union { struct circle c; struct square s; struct polydoodle p; } u; };
67
10762
by: S.Tobias | last post by:
I would like to check if I understand the following excerpt correctly: 6.2.5#26 (Types): All pointers to structure types shall have the same representation and alignment requirements as each other. All pointers to union types shall have the same representation and alignment requirements as each other. Does it mean that *all* structure (or union) types have the same alignment? Eg. type
18
12965
by: Mockey Chen | last post by:
My friend ask me a question as following: give a union SU define as: typedef union _SU { short x; struct y{ char a; short b; char c;
3
8800
by: Lighter | last post by:
Why does Platform SDK define union LARGE_INTEGER in such a way? ntdef.h defines the union LARGE_INTEGER as follows: typedef union _LARGE_INTEGER { struct { ULONG LowPart;
6
2585
by: steve.kim | last post by:
Hello, I'm trying to make a class like below... class myClass { public: // ctor / dtor .... // methods
2
1417
by: c.a.l | last post by:
Hi, I have found a piece of code which declares union like this: union vector_s { struct {float x,y,z}; float m; } v; there is unnamed structure m ( matrix 1x3 ) which has same offset as x, so they are aligned properly. The problem I have is, whether I can safely write data to, lets say, v.m and read same data from v.z? Like:
7
8873
by: David Resnick | last post by:
I'm faced with a header with anonymous structures declared inside a union like this: union msg { struct { int a; int b; } s1; struct {
3
7726
by: SRK | last post by:
Hi, I wanted to use an anonymous union within an structure something like below - struct Test { union { std::string user; //char user; std::string role; //char role;
0
10490
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10259
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10238
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10030
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9077
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7570
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5467
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5589
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2941
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.