473,490 Members | 2,489 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

'*' cannot appear in a constant-expression problem

Hi all, I'm encountering this while trying to implement a factory
singleton method to generate objects.

The singleton has a static map which binds a static creation function
defined in each class to the type of the object to be created.

Here it is the code, which is a modification of the wikipedia C++
factory example code:

----------------------------------8<--------------------------------
#include <string>
#include <iostream>
#include <map>

class Pizza {
public:
virtual void get_price() = 0;
};

class HamAndMushroomPizza: public Pizza {
public:
virtual void get_price(){
std::cout << "Ham and Mushroom: $8.5" << std::endl;
}

static Pizza* create_pizza()
{
return new HamAndMushroomPizza;
}
};

class DeluxePizza : public Pizza {
public:
virtual void get_price() {
std::cout << "Deluxe: $10.5" << std::endl;
}

static Pizza* create_pizza()
{
return new DeluxePizza;
}

};

class SeafoodPizza : public Pizza {
public:
virtual void get_price(){
std::cout << "Seafood: $11.5" << std::endl;
}

static Pizza* create_pizza()
{
return new SeafoodPizza;
}
};

class PizzaFactory {
private:

static std::map<std::string, (Pizza *)(*)()creators;

init() {
map["Deluxe"] = DeluxPizza::create_pizza;
map["Ham and Mushroom"] = HamAndMushroom::create_pizza;
map["Seafood"] = SeafoodPizza::create_pizza;
}

public:
PizzaFactory* get_instance()
{
static PizzaFactory instance = 0;
if (!instance) {
instance = new PizzaFactory;
instance.Init();
}
return instance;
}

static Pizza* create_pizza(const std::string type) {
PString type = config.GetAttribute("type");
if ((it = creators.find(type) != creators.end()))
return (it->second)();
else
return 0;
}
};

// usage
int main() {
PizzaFactory* factory = PizzaFactory::get_instance();
Pizza *pizza = 0;

pizza = factory->create_pizza("Default");
pizza->get_price();
delete pizza;

pizza = factory->create_pizza("Ham and Mushroom");
pizza->get_price();
delete pizza;

pizza = factory->create_pizza("Seafood Pizza");
pizza->get_price();
delete pizza;
}
----------------------------------8<--------------------------------

The static map declaration syntax is somehow wrong, and after hitting
my head sometime I still can't get out of it.

I'm using g++ 4.3.1, and the syntax error I get is this:

make PizzaFactory2; and PizzaFactory2
g++ -I/home/stefano/opt/reilabs/include -I/home/stefano/include -O0 -g -ggdb PizzaFactory2.cxx -c -o PizzaFactory2.o
PizzaFactory2.cxx:50: error: `*' cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: `*' cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: template argument 2 is invalid

The exact line of the error is:
static std::map<std::string, (Pizza *)(*)()creators;

which I interpret as:
a static map from string to a static method pointer which takes no
parameters and returns a pointer to a Pizza object.

What am I missing or what I'm doing wrongly?

Regards and many help in advance.
Oct 24 '08 #1
8 20389
On 2008-10-24 05:46:59 -0400, Stefano Sabatini
<st**************@caos.orgsaid:

[~90 lines of mostly irrelevant code snipped]
>
I'm using g++ 4.3.1, and the syntax error I get is this:

make PizzaFactory2; and PizzaFactory2
g++ -I/home/stefano/opt/reilabs/include -I/home/stefano/include -O0 -g
-ggdb PizzaFactory2.cxx -c -o PizzaFactory2.o
PizzaFactory2.cxx:50: error: `*' cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a
constant-expression
PizzaFactory2.cxx:50: error: `*' cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a
constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a
constant-expression
PizzaFactory2.cxx:50: error: template argument 2 is invalid

The exact line of the error is:
static std::map<std::string, (Pizza *)(*)()creators;
#include <string>
#include <map>
class Pizza;
std::map<std::string, (Pizza*)(*)()creators;

These four lines produce the same series of error messages. Learn how
to reduce code that produces error messages to a minimal example. In
the course of doing that, the error usually becomes obvious. If it
doesn't become obvious (and this one isn't obvious), post the minimal
example. This code compiles cleanly:

#include <string>
#include <map>
class Pizza;
std::map<std::string, Pizza*(*)()creators;

In general, though, don't write complicated types on the fly (pointers
to functions are complicated types). Use typedefs:

typedef Pizza*(*creator)();
std::map<std::string, creatorcreators;

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Oct 24 '08 #2
On 2008-10-24, Stefano Sabatini <st**************@caos.orgwrote:
Hi all, I'm encountering this while trying to implement a factory
singleton method to generate objects.

The singleton has a static map which binds a static creation function
defined in each class to the type of the object to be created.

Here it is the code, which is a modification of the wikipedia C++
factory example code:

----------------------------------8<--------------------------------
[...]
----------------------------------8<--------------------------------
Sorry it had tons of erros, check below the new version.
The static map declaration syntax is somehow wrong, and after hitting
my head sometime I still can't get out of it.

I'm using g++ 4.3.1, and the syntax error I get is this:

make PizzaFactory2; and PizzaFactory2
g++ -I/home/stefano/opt/reilabs/include -I/home/stefano/include -O0 -g -ggdb PizzaFactory2.cxx -c -o PizzaFactory2.o
PizzaFactory2.cxx:50: error: `*' cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: `*' cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: template argument 2 is invalid

The exact line of the error is:
static std::map<std::string, (Pizza *)(*)()creators;

which I interpret as:
a static map from string to a static method pointer which takes no
parameters and returns a pointer to a Pizza object.

What am I missing or what I'm doing wrongly?
Well I found a solution, even if I'm not sure I really understood it.

If I define the type like this:
typedef Pizza *(* pizza_creator_fn_ptr)();

and then use the map like this:
static map<std::string, pizza_creator_fn_ptrcreators;

then it seems to work fine.

A short explanation would be nice.

New version here:
-----------------------------------8<-------------------------------------
#include <string>
#include <iostream>
#include <map>

class Pizza {
public:
virtual void get_price() = 0;
};

class HamAndMushroomPizza: public Pizza {
public:
virtual void get_price() {
std::cout << "Ham and Mushroom: $8.5" << std::endl;
}

static Pizza* create_pizza() {
return new HamAndMushroomPizza;
}
};

class DeluxePizza : public Pizza {
public:
virtual void get_price() {
std::cout << "Deluxe: $10.5" << std::endl;
}

static Pizza* create_pizza() {
return new DeluxePizza;
}
};

class SeafoodPizza : public Pizza {
public:
virtual void get_price() {
std::cout << "Seafood: $11.5" << std::endl;
}

static Pizza* create_pizza() {
return new SeafoodPizza;
}
};

typedef Pizza* (*pizza_creator_fn_ptr)(void);

class PizzaFactory {
private:
static std::map<std::string, pizza_creator_fn_ptrcreators;

void init() {
creators["Deluxe"] = &DeluxePizza::create_pizza;
creators["Ham and Mushroom"] = &HamAndMushroomPizza::create_pizza;
creators["Seafood"] = &SeafoodPizza::create_pizza;
}

public:
static PizzaFactory* get_instance()
{
static PizzaFactory * instance = 0;
if (!instance) {
instance = new PizzaFactory;
instance->init();
}
return instance;
}

static Pizza* create_pizza(const std::string& type) {
std::map<std::string, pizza_creator_fn_ptr>::iterator it;
if ((it = creators.find(type)) != creators.end())
return (*(it->second))();
else
return 0;
}
};

//usage
int main() {
PizzaFactory* factory = PizzaFactory::get_instance();
Pizza *pizza = 0;

pizza = factory->create_pizza("Default");
pizza->get_price();
delete pizza;

pizza = factory->create_pizza("Ham and Mushroom");
pizza->get_price();
delete pizza;

pizza = factory->create_pizza("Seafood Pizza");
pizza->get_price();
delete pizza;
}
-----------------------------------8<-------------------------------------

The code has still a problem related to the use of the static map
which isn't found by the compiler, but this is another problem.

Thanks for your attention.
Oct 24 '08 #3
On 2008-10-24, Pete Becker <pe**@versatilecoding.comwrote:
On 2008-10-24 05:46:59 -0400, Stefano Sabatini
<st**************@caos.orgsaid:

[~90 lines of mostly irrelevant code snipped]
>>
I'm using g++ 4.3.1, and the syntax error I get is this:

make PizzaFactory2; and PizzaFactory2
g++ -I/home/stefano/opt/reilabs/include -I/home/stefano/include -O0 -g
-ggdb PizzaFactory2.cxx -c -o PizzaFactory2.o
PizzaFactory2.cxx:50: error: `*' cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a
constant-expression
PizzaFactory2.cxx:50: error: `*' cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a
constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a
constant-expression
PizzaFactory2.cxx:50: error: template argument 2 is invalid

The exact line of the error is:
static std::map<std::string, (Pizza *)(*)()creators;

#include <string>
#include <map>
class Pizza;
std::map<std::string, (Pizza*)(*)()creators;

These four lines produce the same series of error messages. Learn how
to reduce code that produces error messages to a minimal example. In
the course of doing that, the error usually becomes obvious. If it
doesn't become obvious (and this one isn't obvious), post the minimal
example. This code compiles cleanly:

#include <string>
#include <map>
class Pizza;
std::map<std::string, Pizza*(*)()creators;
OK, so the problem was the superfluous parentehsis.
In general, though, don't write complicated types on the fly (pointers
to functions are complicated types). Use typedefs:

typedef Pizza*(*creator)();
std::map<std::string, creatorcreators;
Yes, good advice.

Many thanks, regards.
Oct 24 '08 #4
On 2008-10-24, Stefano Sabatini <st**************@caos.orgwrote:
On 2008-10-24, Stefano Sabatini <st**************@caos.orgwrote:
>Hi all, I'm encountering this while trying to implement a factory
singleton method to generate objects.

The singleton has a static map which binds a static creation function
defined in each class to the type of the object to be created.

Here it is the code, which is a modification of the wikipedia C++
factory example code:

----------------------------------8<--------------------------------
[...]
>----------------------------------8<--------------------------------

Sorry it had tons of erros, check below the new version.
>The static map declaration syntax is somehow wrong, and after hitting
my head sometime I still can't get out of it.

I'm using g++ 4.3.1, and the syntax error I get is this:

make PizzaFactory2; and PizzaFactory2
g++ -I/home/stefano/opt/reilabs/include -I/home/stefano/include -O0 -g -ggdb PizzaFactory2.cxx -c -o PizzaFactory2.o
PizzaFactory2.cxx:50: error: `*' cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: `*' cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: a function call cannot appear in a constant-expression
PizzaFactory2.cxx:50: error: template argument 2 is invalid

The exact line of the error is:
static std::map<std::string, (Pizza *)(*)()creators;

which I interpret as:
a static map from string to a static method pointer which takes no
parameters and returns a pointer to a Pizza object.

What am I missing or what I'm doing wrongly?

Well I found a solution, even if I'm not sure I really understood it.

If I define the type like this:
typedef Pizza *(* pizza_creator_fn_ptr)();

and then use the map like this:
static map<std::string, pizza_creator_fn_ptrcreators;

then it seems to work fine.

A short explanation would be nice.
As we discovered the problem was the superfluous parentheses.
New version here:
-----------------------------------8<-------------------------------------
[...]
-----------------------------------8<-------------------------------------

The code has still a problem related to the use of the static map
which isn't found by the compiler, but this is another problem.
For the archive, the problem was due to the (non obvious) fact that a
static map has to be also defined in the implementation, that is
outside the delclaration. Adding the missing definition:

std::map<std::string, pizza_creator_ptrPizzaFactory::creators;

fixed the problem.

Reposting the correct and running version of the toy pizza creator
singleton/factory sample.

----------------------------------------8<------------------------
#include <string>
#include <map>
#include <iostream>

class Pizza {
public:
virtual void get_price() = 0;
};

class HamAndMushroomPizza: public Pizza {
public:
virtual void get_price() {
std::cout << "Ham and Mushroom: $8.5" << std::endl;
}

static Pizza* create_pizza() {
return new HamAndMushroomPizza;
}
};

class DeluxePizza : public Pizza {
public:
virtual void get_price() {
std::cout << "Deluxe: $10.5" << std::endl;
}

static Pizza* create_pizza() {
return new DeluxePizza;
}
};

class SeafoodPizza : public Pizza {
public:
virtual void get_price() {
std::cout << "Seafood: $11.5" << std::endl;
}

static Pizza* create_pizza() {
return new SeafoodPizza;
}
};

typedef Pizza* (*pizza_creator_ptr)(void);

class PizzaFactory {
private:
static std::map<std::string, pizza_creator_ptrcreators;

void init() {
PizzaFactory::creators["Deluxe"] = &DeluxePizza::create_pizza;
PizzaFactory::creators["Ham and Mushroom"] = &HamAndMushroomPizza::create_pizza;
PizzaFactory::creators["Seafood"] = &SeafoodPizza::create_pizza;
}

public:
static PizzaFactory* get_instance()
{
static PizzaFactory * instance = 0;
if (!instance) {
instance = new PizzaFactory;
instance->init();
}
return instance;
}

Pizza* create_pizza(const std::string& type) {
std::map<std::string, pizza_creator_ptr>::iterator it;
if ((it = PizzaFactory::creators.find(type)) != creators.end())
return (*(it->second))();
else
return 0;
}
};

std::map<std::string, pizza_creator_ptrPizzaFactory::creators;

//usage
int main() {
PizzaFactory* factory = PizzaFactory::get_instance();
Pizza *pizza = 0;

if (pizza = factory->create_pizza("Default")) {
pizza->get_price();
delete pizza;
}

if (pizza = factory->create_pizza("Ham and Mushroom")) {
pizza->get_price();
delete pizza;
}

if (pizza = factory->create_pizza("Seafood")) {
pizza->get_price();
delete pizza;
}

return 0;
}
----------------------------------------8<------------------------

Regards.
Oct 24 '08 #5
----------------------------------------8<------------------------
#include <string>
#include <map>
#include <iostream>

class Pizza {
public:
virtual void get_price() = 0;
};

class HamAndMushroomPizza: public Pizza {
public:
virtual void get_price() {
std::cout << "Ham and Mushroom: $8.5" << std::endl;
}

static Pizza* create_pizza() {
return new HamAndMushroomPizza;
}
};

class DeluxePizza : public Pizza {
public:
virtual void get_price() {
std::cout << "Deluxe: $10.5" << std::endl;
}

static Pizza* create_pizza() {
return new DeluxePizza;
}
};

class SeafoodPizza : public Pizza {
public:
virtual void get_price() {
std::cout << "Seafood: $11.5" << std::endl;
}

static Pizza* create_pizza() {
return new SeafoodPizza;
}
};

typedef Pizza* (*pizza_creator_ptr)(void);

class PizzaFactory {
private:
static std::map<std::string, pizza_creator_ptrcreators;

void init() {
PizzaFactory::creators["Deluxe"] = &DeluxePizza::create_pizza;
PizzaFactory::creators["Ham and Mushroom"] = &HamAndMushroomPizza::create_pizza;
PizzaFactory::creators["Seafood"] = &SeafoodPizza::create_pizza;
}

public:
static PizzaFactory* get_instance()
{
static PizzaFactory * instance = 0;
if (!instance) {
instance = new PizzaFactory;
instance->init();
}
return instance;
}

Pizza* create_pizza(const std::string& type) {
std::map<std::string, pizza_creator_ptr>::iterator it;
if ((it = PizzaFactory::creators.find(type)) != creators.end())
return (*(it->second))();
else
return 0;
}
};

std::map<std::string, pizza_creator_ptrPizzaFactory::creators;

//usage
int main() {
PizzaFactory* factory = PizzaFactory::get_instance();
Pizza *pizza = 0;

if (pizza = factory->create_pizza("Default")) {
pizza->get_price();
delete pizza;
}

if (pizza = factory->create_pizza("Ham and Mushroom")) {
pizza->get_price();
delete pizza;
}

if (pizza = factory->create_pizza("Seafood")) {
pizza->get_price();
delete pizza;
}

return 0;
}
----------------------------------------8<------------------------
I think there is another problem with this example: the Pizza class is
missing the virtual destructor.

Oct 24 '08 #6
Pete Becker wrote:

In general, though, don't write complicated types on the fly
(pointers to functions are complicated types). Use typedefs:

typedef Pizza*(*creator)();
std::map<std::string, creatorcreators;
I tend to find it a bit more readable to do something like:

typedef Pizza* CreatorFuncType();
std::map<std::string, CreatorFuncType*creators;

Brian

Oct 24 '08 #7
On 2008-10-24 14:20:09 -0400, "Default User" <de***********@yahoo.comsaid:
Pete Becker wrote:

>In general, though, don't write complicated types on the fly
(pointers to functions are complicated types). Use typedefs:

typedef Pizza*(*creator)();
std::map<std::string, creatorcreators;

I tend to find it a bit more readable to do something like:

typedef Pizza* CreatorFuncType();
std::map<std::string, CreatorFuncType*creators;
Thus making use of the only way that a function type can be used in C:
as the target of the address-of operator.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Oct 24 '08 #8
Pete Becker wrote:
On 2008-10-24 14:20:09 -0400, "Default User"
<de***********@yahoo.comsaid:
Pete Becker wrote:

In general, though, don't write complicated types on the fly
(pointers to functions are complicated types). Use typedefs:
>
typedef Pizza*(*creator)();
std::map<std::string, creatorcreators;
I tend to find it a bit more readable to do something like:

typedef Pizza* CreatorFuncType();
std::map<std::string, CreatorFuncType*creators;

Thus making use of the only way that a function type can be used in
C: as the target of the address-of operator.
You can use it in a declaration (but not definition) of a function as
well, I believe.

Brian
Oct 24 '08 #9

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

Similar topics

5
4551
by: Sabrina | last post by:
Can someone help? I have been trying to get the hash_map in C++ for .NET to work with strings and const char*. I am using the const char* as the key and a pointer to another class as the data...
0
1884
by: Andrea M. Segovia | last post by:
I just compiled (but did not install) perl 5.8.0 on an SGI Origin 300 server (IP35) running IRIX 6.5.20m. Make test reported one test error, which I narrowed down to .../lib/ExUtils/t/Constant.t...
5
22002
by: Brad Moore | last post by:
Hey all, I'm getting the following compiler error from my code. I was wondering if anyone could help me understand the concept behind it (I actually did try and compile this degenerate...
10
13347
by: Alex Vinokur | last post by:
What is wrong in program below? --- foo.cpp --- struct Foo {}; int main () { Foo foo1, foo2; for (int i = 0, foo1 = foo2; ; ); // Line#5 return 0; }
3
2663
by: Richard Cavell | last post by:
#include <gmp.h> mpz_t* p_mympz = new mpz_t; error: cannot convert '__mpz_struct*' to '__mpz_struct (*)' in initialization 1. What does that mean? 2. Given that mpz_t doesn't have a...
9
2086
by: John Guo | last post by:
Hi all, Please help see why this snippet does not compile. Thanks a lot. John #include <string> #include <vector> namespace PatternMsg { std::vector<std::string> msg(17);
51
23619
by: Pedro Graca | last post by:
I run into a strange warning (for me) today (I was trying to improve the score of the UVA #10018 Programming Challenge). $ gcc -W -Wall -std=c89 -pedantic -O2 10018-clc.c -o 10018-clc...
4
2230
by: DDB | last post by:
I am using VS 2005. I created VB.NET program and I cannot debug it. I see that pdb files was created but debug does not work. Please help me to enable debugger in VB.NET program. In my Advance...
45
18763
by: Zytan | last post by:
This returns the following error: "Cannot modify the return value of 'System.Collections.Generic.List<MyStruct>.this' because it is not a variable" and I have no idea why! Do lists return copies...
33
5509
by: desktop | last post by:
In the C++ standard sec 23.1.2 table 69 it says that erase(q) where q is a pointer to an element can be done in amortized constant time. I guess that is not worst case since std::set is...
0
7112
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
7146
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
7183
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...
1
6852
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...
0
7356
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
5448
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,...
1
4878
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...
0
3084
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...
0
3074
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.