Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Languages / Managed C++ / November 2007

Tip: Looking for answers? Try searching our database.

How to initialize a member struct

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Bob Altman - 29 Nov 2007 01:01 GMT
Hi all,

If I have a class that includes an instance of a struct as a member, how do
I initialize that struct?  I can't find a syntax for the constructor
"initializer list" that works.

For example, suppose MyStruct has 3 int members.  I've tried something like
this:

 class Test {
 private:
   MyStruct X
 }

 // Constructor
 Test::Test(void) : X(1,2,3)  // Try initializing all 3 struct members...
Jeffrey Tan[MSFT] - 29 Nov 2007 02:55 GMT
Hi Bob,

Using initializer list for another structure member means calling that
structure's constructor. So that structure must has a constructor matching
the signature with the initializer list calling, like this:
struct MyStruct
{
    int m_a;
    int m_b;
    int m_c;

    MyStruct(int a, int b, int c)
    {
        m_a = a;
        m_b = b;
        m_c = c;
    }
};

class Test {
    Test::Test(void) : X(1,2,3)
    {
    }
private:
    MyStruct X;
};
Hope it helps.

Best regards,
Jeffrey Tan
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
Bob Altman - 29 Nov 2007 16:54 GMT
Hi Jeffrey,

I can't (easily) give this struct a constructor.  Here's the longer story
(which I didn't want to get into because it's a little bit complicated):

Optimally, I'd like to just give this struct a parameterless constructor so
that the struct initializes itself.  But when I do that, my code breaks.
Or, more specifically, the code in another DLL breaks.

I pass this struct type (call it "MyStruct") as an argument to a templated
class constructor (call it "TemplatedClass") in another DLL library.
Because it is a templated class, some of source code for the class lives in
the public header file and some of the code is compiled into the resultant
DLL.  For some reason that I haven't tried to figure out, when I add a
parameterless constructor to MyStruct then the compiler issues an error in
the templated source code.  (Sorry, I'm not at my work computer, so I don't
have the error number handy.)  The error tells me that the DLL that contains
TemplatedClass needs to expose a fully constructed template for
TemplatedClass<MyStruct>.

Now, I've dealt with this error in other DLL projects.  Under some (not well
understood) circumstances, if a DLL exposes a templated class, you need to
include some magic code in the public interface to expose fully constructed
definitions of the template for some of the types that callers use when
constructing instances of the templated class.

I don't want to monkey with the code in the DLL that contains
TemplatedClass.  That is a general purpose library that shouldn't have code
in it that knows about my desire to use it with MyStruct as a template
parameter.  So...  That gets me back to trying to figure out a way to
initialize MyStruct without giving it a constructor.

If I create a MyStruct in "normal" code, I can just write:

 MyStruct x = {1, 2, 3};

But I apparently can't include the initializer list (the "{1, 2, 3}") in a
class definition header file where I declare a member variable of type
MyStruct.  This leaves me with trying to come up with a way to initialize
the struct in the class constructor.  The ugly way to do this is to
explicitly initialize each member of the structure in the constructor code.
But I'm looking for a way to use an initializer list to initialize the
entire struct all at once.

Sigh...  I told you it was complicated...

> Hi Bob,
>
[quoted text clipped - 46 lines]
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
Ben Voigt [C++ MVP] - 29 Nov 2007 18:24 GMT
> If I create a MyStruct in "normal" code, I can just write:
>
[quoted text clipped - 7 lines]
> code. But I'm looking for a way to use an initializer list to initialize
> the entire struct all at once.

With a helper function:

static MyStruct init_my_struct(int a, int b, int c)
{
   const MyStruct x = { a, b, c };
   return x;
}

MyConstructor() : member(init_my_struct(1, 2, 3)) {}

> Sigh...  I told you it was complicated...

>> Hi Bob,
>>
[quoted text clipped - 49 lines]
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
Bob Altman - 29 Nov 2007 18:58 GMT
Thanks Ben.  I guess that's about as clean a solution as I'm likely to get.

 - Bob

>> If I create a MyStruct in "normal" code, I can just write:
>>
[quoted text clipped - 77 lines]
>>> This posting is provided "AS IS" with no warranties, and confers no
>>> rights.

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.