Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a C++ class which contains only static data members. I noticed the compiler is OK if I define the access methods as const, as static, or as "regular" - so all seem to work.

My question is what is the correct/better practice in this case?

Thanks!

share|improve this question

4 Answers

up vote 2 down vote accepted

Static accessors for static data members.

share|improve this answer
My compiler does not seem to allow having a method both static and const. I believe that once a method is defined static, then by design it cannot modify the class non-static members - since this method does not "belong" to a specific instance of the class. – Mym Nov 11 '09 at 6:55
You are right, my fault. – Daniel Rodriguez Nov 11 '09 at 7:01
Thank you. This makes sense to me. – Mym Nov 11 '09 at 7:03
@Mym: In your question you state that the class contains only static data members. If the class also contains non-static data, please edit the question. This answer is correct to your question: If you only have static data members, the most appropriate solution is using only static methods on them. – David Rodríguez - dribeas Nov 11 '09 at 7:10
For now there are only static data members. The thing is that I want to maintain the flexibility to enhance the class in the future (potentially using local data members) without the need to update any calling code. This is why I want the calling code to create an instance of this class and use the methods via this instance. This is why I was thinking not to define them as static. – Mym Nov 11 '09 at 7:14
show 3 more comments

If your class contains only static members, you should probably be using the singleton pattern.

share|improve this answer
I agree, such a class is effectively a singleton. But what is the problem if I keep it like this? – Mym Nov 11 '09 at 6:58
1  
But... be careful. The singleton pattern is often overused. – rlbond Nov 11 '09 at 6:59
Actually, there are very few "real" cases where you need the singleton patter, I believe that a class with only static functions is perfectly ok. – Daniel Rodriguez Nov 11 '09 at 7:01
2  
@Mym: The problem is that you cannot control the order or initialization of static data members. With a singleton you can use different approaches that guarantee the proper initialization (before use) in all scenarios, while with your solution if another static object (global or static data member of other class) access this class' static members during construction then there is no guarantee that this class members have been properly initialized. – David Rodríguez - dribeas Nov 11 '09 at 7:12
Thanks for this data! – Mym Nov 11 '09 at 7:17
show 2 more comments

I have a C++ class which contains only static data members.

Then that probably shouldn't be a class, but either free functions in a namespace or a singleton.

share|improve this answer
I still find it easier to encapsulate them in a designated class since it has a specific role and I have quite a few methods which manipulate these static data members (three different maps). – Mym Nov 11 '09 at 6:59
+1 concur! You only need a header wich declares some functions. These functions will mutate whatever static storage variable you desire. No need to declare them in a class and make other translation units depend on this class declaration. – sellibitze Nov 11 '09 at 8:09
1  
So, a translation unit should be your "abstraction" (not a class) and a header file would be the interface that doesn't contain any implementation details. – sellibitze Nov 11 '09 at 8:11
1  
@Mym: A class is the template for objects. Objects combine state (i.e. data) with behavior (methods). If you have a class that doesn't have state and that isn't there for instantiating objects, then you do not have a class, but a collection of algorithms. Some newer OO languages force you to assemble those in classes, but in C++ you don't need to. You might want to read this article: idinews.com/quasiClass.pdf – sbi Nov 11 '09 at 9:24
Copying the comment I've written in another answer: For now there are only static data members. The thing is that I want to maintain the flexibility to enhance the class in the future (potentially using local data members) without the need to update any calling code. This is why I want the calling code to create an instance of this class and use the methods via this instance. This is why I was thinking not to define them as static. This is why I still want to maintain a class here. – Mym Nov 12 '09 at 9:24
show 1 more comment

If all methods are static then there is no point in creating an instance of the class. So I suggest to make all methods static so that you can use those methods without creating the object of the class. Basically, you will be able to call the methods using the namespace syntax.

share|improve this answer
True, so calling code can either create an instance of the class (no penalty, empty c'tor, no non-static data members), or by directly accessing the static methods without creating an instance. – Mym Nov 11 '09 at 7:06
Yes..but creating an object directly looks a bit odd for all static variable class. – Naveen Nov 11 '09 at 7:12
@Mym: If the class is not meant to be instantiated, you should hide the constructors. Your interface should offer only those operations that make sense for your design. If there are only static data and methods, the constructor should be private (and unimplemented). – David Rodríguez - dribeas Nov 11 '09 at 7:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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