How do you create a static class in C++? I should be able to do something like:
cout << "bit 5 is " << BitParser::getBitAt(buffer, 5) << endl;
Assuming I created the BitParser class. What would the BitParser class definition look like?
|
|
|
|
|
|
|
If you're looking for a way of applying the "static" keyword to a class, like you can in C# for example, then you won't be able to without using Managed C++. But the looks of your sample, you just need to create a public static method on your BitParser object. Like so:
You can use this code to call the method in the same way as your example code. Hope that helps! Cheers. Edit: SuperJoe - Thanks mate! Fixed it up. Poor form eh? :) |
|||
|
|
|
|
You can also create a free function in a namespace: In BitParser.h
In BitParser.cpp
In general this would be the preferred way to write the code. When there's no need for an object don't use a class. |
||
|
|
|
In C++ you want to create a static function of a class (not a static class).
You should then be able to call the function using BitParser::getBitAt() without instantiating an object which I presume is the desired result. |
||
|
|
|
|
static classes are just the compiler hand-holding you and stopping you from writing any instance methods/variables. If you just write a normal class without any instance methods/variables, it's the same thing, and this is what you'd do in C++ |
||
|
|
|
|
OJ, you have a syntax error. The static keyword should only be used in the class definition, and not in the method definition. |
||
|
|
|
|
Consider Matt Price's solution. In C++, a "static class" has no meaning. Using static methods will only limit you. What you want is, expressed in C++ semantics, to put your function (for it is a function) in a namespace. |
||
|
|
|
|
You 'can' have a static class in C++, as mentioned before, a static class is one that does not have any objects of it instantiated it. In C++, this can be obtained by declaring the constructor/destructor as private. End result is the same. |
||
|
|