473,785 Members | 2,310 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C++ .NET class member initialization

Hi,

I'm wondering how C++ .NET initializes class members. I have code that
looks aproximately like this:

_gc class SuperClass;

// Factory object creates instances
_gc class Factory {
public:
virtual SuperClass* createInstance( ) = 0;
};

// Common interface
_gc class SuperClass {
public:
// available class factories
static ArrayList *factories = new ArrayList();

static SuperClass* createInstance( int factory) {
return dynamic_cast<Fa ctory*>
(factories[factory])->createInstance ()
}

virtual void doSomething(voi d) = 0;
};

// Class implementating SuperClass interface
_gc class BaseClass : public SuperClass {
public:
virtual void doSomething(voi d) {
Console::WriteL ine(S"Hello");
}
};

// Factory object for BaseClass
_gc class BaseClassFactor y {
private:
static BaseClassFactor y *theInstance = new BaseClassFactor y();

BaseClassFactor y(void) {
SuperClass::fac tories->Add(this);
}
public:
virtual SuperClass* createInstance( ) {
return new BaseClass();
}
};

Client code would look like this:

SuperClass *sc = SuperClass::cre ateInstance(0);
sc->doSomething( );
The problem is, the BaseClassFactor y constructor is never executed!

Hans
Jul 22 '05 #1
1 2116
"Hans-Christian Stadler" <no**@none.none > wrote in message
news:c5******** ***@news.cyberc ity.dk...
Hi,

I'm wondering how C++ .NET initializes class members. I have code that
looks aproximately like this:

_gc class SuperClass;

// Factory object creates instances
_gc class Factory {
public:
virtual SuperClass* createInstance( ) = 0;
};

// Common interface
_gc class SuperClass {
public:
// available class factories
static ArrayList *factories = new ArrayList();

What's this. Myself is using .NET i am not programming this way. Why the
call to default constructor (other than the MS manuals use this way).

static SuperClass* createInstance( int factory) {
return dynamic_cast<Fa ctory*>
(factories[factory])->createInstance ()
}

virtual void doSomething(voi d) = 0;
};

// Class implementating SuperClass interface
_gc class BaseClass : public SuperClass {
public:
virtual void doSomething(voi d) {
Console::WriteL ine(S"Hello");
}
};

// Factory object for BaseClass
_gc class BaseClassFactor y {
private:
static BaseClassFactor y *theInstance = new BaseClassFactor y();

BaseClassFactor y(void) {
SuperClass::fac tories->Add(this);
}
public:
virtual SuperClass* createInstance( ) {
return new BaseClass();
}
};

Client code would look like this:

SuperClass *sc = SuperClass::cre ateInstance(0);
sc->doSomething( );
The problem is, the BaseClassFactor y constructor is never executed!


The problem is that your code does not compile in VS .NET. Post a code that
compiles followed by your questions. Although .NET API is entirely off topic
in comp.lang.c++. Also try microsoft.publi c.dotnet.* newsgroups.


Ioannis Vranos

Jul 22 '05 #2

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

Similar topics

3
1682
by: kackson | last post by:
Hi. What does it mean when it is written as: in the test.hpp file-> class MYFUNCTION: public TOP { public: ....some variables... MYFUNCTION(int x, int y, int z.. and some more argument);
3
3614
by: DanielBradley | last post by:
Hello all, I have recently been porting code from Linux to cygwin and came across a problem with static const class members (discussed below). I am seeking to determine whether I am programming non-standard C++ or if the problem lies elsewhere. To summarize static const class members are not being accessed properly when accessed from a DLL by another external object file (not within the DLL). It only occurs when the static const...
6
1868
by: Fred | last post by:
Hi I have a class defined in a library that I'd like to add some extra functionality to. This will involve adding a few member variables and a few related methods. As I understand it I can simply inherit from the existing class and add in my new variables and methods - but what about initialisation? Let's say I add new member variables a and b which I want to always have initial values of 0.0. Do I have to override all the...
2
1782
by: twawsico | last post by:
I ran into this while converting some DX C# code to VB.NET (VS 2003), and I'm just curious as to whether this is intended behavior (and if so, where might I read up on it) or more of a bug. This involves creating a New instance of a derived class that inherits a base class. In C#, private member vars in the derived class ( e.g. private MySimpleObject MyObject = new MySimpleObject();) are instantiated immediately when the the calling code...
11
2401
by: DrNoose | last post by:
Hi! I've got a program that's almost done, but I'm getting compile errors in two lines: 317 & 319. I think the main error has to do with the Truck Class. I'm a newbie and keep looking at the code but can't seem to see the error. I don't understand a lot of the fancy stuff so if you can keep it simple for me!!!! Any help is appreciated! Here is the code:
8
8932
by: Per Bull Holmen | last post by:
Hey Im new to c++, so bear with me. I'm used to other OO languages, where it is possible to have class-level initialization functions, that initialize the CLASS rather than an instance of it. Like, for instance the Objective-C method: +(void)initialize Which has the following characteristics: It is guaranteed to be run
7
3412
by: BeautifulMind | last post by:
In case of inheritence the order of execution of constructors is in the order of derivation and order of destructor execution is in reverse order of derivation. Is this case also true in case class is derived as virtual? How does the order of construction/destruction is impacted if the base class is derived as virtual or non virtual? just see the example below.
9
8895
by: Jess | last post by:
Hello, I was told that if I declare a static class constant like this: class A{ static const int x = 10; }; then the above statement is a declaration rather than a definition. As I've *defined* "x"'s value to be 10, isn't above statement a
15
7872
by: akomiakov | last post by:
Is there a technical reason why one can't initialize a cost static non- integral data member in a class?
2
2485
by: Ranganath | last post by:
Hi, Why is there a restriction that only integral types can be made static constant members of a class? For e.g., class B { private: static const double K = 10; };
0
9647
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9485
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10356
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
8986
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
7506
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
6743
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5390
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...
2
3662
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2890
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.