vote up 0 vote down star
1

Hi,

I have a code a following (simplified version):

#define MESSAGE_SIZE_MAX 1024
#defined MESSAGE_COUNT_MAX 20

class MyClass {
public:
   .. some stuff
private:
   unsigned char m_messageStorage[MESSAGE_COUNT_MAX*MESSAGE_SIZE_MAX];
};

I don't like defines, which are visible to all users of MyCalss.

How can I do it in C++ style?

Thanks Dima

flag

49% accept rate

3 Answers

vote up 3 vote down check

The trick to get such things into the class definition is,

// public:
enum {MESSAGE_SIZE_MAX=1024, MESSAGE_COUNT_MAX=20};

I never liked #defines to be used like constants.
Its always a good practice to use enum.

link|flag
vote up 4 vote down

Why don't you simply use a constant?

const int message_size_max = 1024;

Note that unlike C, C++ makes constant variables in global scope have static linkage by default.

The constant variable above is a constant expression and as such can be used to specify array sizes.

char message[message_size_max];
link|flag
It will be statically linked in all objects using MyClass and thus adding garbage to them. – idimba Jul 22 at 15:33
If it does, then you have an ancient compiler or you're taking the constant's address somewhere. – avakar Jul 22 at 15:46
vote up 0 vote down

If you don't like #defines, you can use constants (const). These are just variables that can't be changed, like final in java. They will have the same effect as #define. Constants in classes are also usually static.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.