473,385 Members | 1,942 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,385 software developers and data experts.

singleton question

I have a singleton class that looks a little like this:

class MyClass
{
private:

//data

MyClass()
{
Create();
}

void Create(); //initialization stuff

public:

static MyClass* Instance()
{
static MyClass instance;

return &instance;
}

//interface
};

This singleton class is used within multiple cpp files within my
project. It works fine in debug build but when I compile a release
build the MyClass ctor is called multiple times, one time for each
different cpp file it is called from.

Do you know why this is happening? I don't understand what's going on
at all. Surely it is only possible for the ctor to be called once
given this code.

Thanks for any enlightenment.
Jul 19 '05 #1
9 4744
Hi,

if you are defining your static Instance() method inside a header file, this
should result in an behaviour as you described. Because you have more than
only one static instance of your singleton class.
If you are defining the Instance() method outside of the class in a cpp
file, it should work correctly.

Ralf

www.cplusplus-kurse.de
"tarmat" <ta****@btopenworld.com> schrieb im Newsbeitrag
news:43********************************@4ax.com...
I have a singleton class that looks a little like this:

class MyClass
{
private:

//data

MyClass()
{
Create();
}

void Create(); //initialization stuff

public:

static MyClass* Instance()
{
static MyClass instance;

return &instance;
}

//interface
};

This singleton class is used within multiple cpp files within my
project. It works fine in debug build but when I compile a release
build the MyClass ctor is called multiple times, one time for each
different cpp file it is called from.

Do you know why this is happening? I don't understand what's going on
at all. Surely it is only possible for the ctor to be called once
given this code.

Thanks for any enlightenment.

Jul 19 '05 #2
tarmat wrote:
I have a singleton class that looks a little like this:

class MyClass
{
private:

//data

MyClass()
{
Create();
}

void Create(); //initialization stuff

public:

static MyClass* Instance()
{
static MyClass instance;

return &instance;
}

//interface
};

This singleton class is used within multiple cpp files within my
project. It works fine in debug build but when I compile a release
build the MyClass ctor is called multiple times, one time for each
different cpp file it is called from.

Do you know why this is happening? I don't understand what's going on
at all. Surely it is only possible for the ctor to be called once
given this code.

Thanks for any enlightenment.


If you move the definition of MyClass::Instance() into a '.cpp' file, and
that works, then the problem is that your compiler doesn't make static data
defined in inline member functions refer to the same item; I only know this
through similar experience with two different compilers. On older compilers,
if static class data is defined in headers, then every module that includes
that header gets its own unique static data; newer compilers ensure that
there is only one instance if the data.

Tim
Jul 19 '05 #3
thanks guys, I didn't know that
Jul 19 '05 #4
tarmat wrote:
static MyClass* Instance()
{
static MyClass instance;

return &instance;
}
IMO a pointer is the wrong thing to return there. Passing a non-const
pointer often implies to the client that the caller owns the returned
pointer. Passing a reference gives the clear message that the object is not
to be deleted by clients.
This singleton class is used within multiple cpp files within my
project. It works fine in debug build but when I compile a release
build the MyClass ctor is called multiple times, one time for each
different cpp file it is called from.


Remove the 'static' part if you compile this inline. (i learned this lesson
only a few weeks ago, in a case almost identical to yours.)
--
----- stephan beal
http://s11.net/
Registered Linux User #71917 http://counter.li.org
I speak for myself, not my employer. Contents may
be hot. Slippery when wet. Reading disclaimers makes
you go blind. Writing them is worse. You have been Warned.

Jul 19 '05 #5
stephan beal wrote:
tarmat wrote:
static MyClass* Instance()
{
static MyClass instance;

return &instance;
}


IMO a pointer is the wrong thing to return there. Passing a non-const
pointer often implies to the client that the caller owns the returned
pointer. Passing a reference gives the clear message that the object
is not to be deleted by clients.
This singleton class is used within multiple cpp files within my
project. It works fine in debug build but when I compile a release
build the MyClass ctor is called multiple times, one time for each
different cpp file it is called from.


Remove the 'static' part if you compile this inline. (i learned this
lesson only a few weeks ago, in a case almost identical to yours.)


Stephan,

Hi. The poster can't simply remove 'static'; to do so would mean that
instance is a temporary object and Instance() would be returning a pointer
to that temporary object. Also the singleton would be constructed and
destructed every time someone tried to get a handle to it... which is
probably not what's wanted.

The options are:

1) move MyClass::Instance() to a '.cpp' file
2) move 'instance' out of Instance() and into MyClass (keeping it static) an
define it in a '.cpp' file
3) find one of these trendy compilers that knows what to do

Personally, I like 3) since it gets rid of the need for '.cpp' files that
contain one function :-)
Tim
Jul 19 '05 #6

"tarmat" <ta****@btopenworld.com> wrote in message
news:43********************************@4ax.com...
I have a singleton class that looks a little like this:

class MyClass
{
private:

//data

MyClass()
{
Create();
}

void Create(); //initialization stuff

public:

static MyClass* Instance()
{
static MyClass instance;

return &instance;
}

//interface
};

This singleton class is used within multiple cpp files within my
project. It works fine in debug build but when I compile a release
build the MyClass ctor is called multiple times, one time for each
different cpp file it is called from.

Do you know why this is happening? I don't understand what's going on
at all. Surely it is only possible for the ctor to be called once
given this code.


No, I don't think this is a standard approach. You're creating a static
instance in your *header* file. You want one instance per application, not
one per inclusion of header file. (By the way, just because you have a
singleton class doesn't necessarily mean you *have* to have an instance.
Are you sure you don't want to create that instance somewhere else, if and
when you need it?)
Jul 19 '05 #7
Tim Clacy wrote:
Hi. The poster can't simply remove 'static'; to do so would mean that
instance is a temporary object and Instance() would be returning a pointer
to that temporary object. Also the singleton would be constructed and


Sorry, you misunderstood (and i was ambiguous): i meant the static qualifier
from the function, not the internal static variable.

--
----- stephan beal
http://s11n.net/
Registered Linux User #71917 http://counter.li.org
I speak for myself, not my employer. Contents may
be hot. Slippery when wet. Reading disclaimers makes
you go blind. Writing them is worse. You have been Warned.

Jul 19 '05 #8
stephan beal wrote:
Tim Clacy wrote:
Hi. The poster can't simply remove 'static'; to do so would mean that
instance is a temporary object and Instance() would be returning a
pointer to that temporary object. Also the singleton would be
constructed and


Sorry, you misunderstood (and i was ambiguous): i meant the static
qualifier from the function, not the internal static variable.


Stephan,

....but if you remove the static qualifier from 'Instance()', you will need
an instance of the class to get to the the 'Instance()' member function;
it's not a singleton anymore.

Tim
Jul 19 '05 #9
Tim Clacy wrote:
Stephan,

...but if you remove the static qualifier from 'Instance()', you will need
an instance of the class to get to the the 'Instance()' member function;
it's not a singleton anymore.


Oh, doh.
/slap forehead.

--
----- stephan beal
http://s11n.net/
Registered Linux User #71917 http://counter.li.org
I speak for myself, not my employer. Contents may
be hot. Slippery when wet. Reading disclaimers makes
you go blind. Writing them is worse. You have been Warned.
*
Jul 19 '05 #10

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

Similar topics

1
by: Richard A. DeVenezia | last post by:
foo() generates elements with event handlers that invoke foo function properties. Is this an abhorrent or misthought pattern ? It allows just the one occurence of identifier /foo/ to be changed...
4
by: Eric | last post by:
Perhaps this question has been posed before (I'd be surprised if it hasn't) but I just gotta know... Is it possible to combine the Singleton and Factory Method design patterns in the same class?...
10
by: ferdinand.stefanus | last post by:
Hi Could someone tell me what's the difference between these two singleton implementations: First implementation: class Singleton { public:
1
by: Stephen Brown | last post by:
I posted a question yesterday about a Singleton I have, using the standard dotNet pattern, that seems to get recreated several times a day. I turned on my performance counters (thanks to Mickey...
21
by: Sharon | last post by:
I wish to build a framework for our developers that will include a singleton pattern. But it can not be a base class because it has a private constructor and therefore can be inherit. I thought...
14
by: Paul Bromley | last post by:
Forgive my ignorance on this one as I am trying to use a Singleton class. I need to use this to have one instance of my Class running and I think I understand how to do this. My question however is...
2
by: Kevin Newman | last post by:
I have been playing around with a couple of ways to add inheritance to a JavaScript singleton pattern. As far as I'm aware, using an anonymous constructor to create a singleton does not allow any...
6
by: toton | last post by:
Hi, If I have a singleton class based on dynamic initialization (with new ) , is it considered a memory leak? Anything in C++ standard says about it ? And little off - topic question , If the...
3
by: wizwx | last post by:
There are two typical implementations of a singleton. The first one is to use a static pointer class Singleton { static Singleton * pSingleton; public: Singleton * instance() {...
2
by: Bob Johnson | last post by:
Just wondering the extent to which some of you are implementing classes as Singletons. I'm working on a brand new project and, early on, identified some obvious candidates. By "obvoius candidates"...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
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
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,...
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...

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.