I would like a strong typed integer in C++ that compiles in Visual Studio 2010.
I need this type to act like an integer in some templates. In particular I need to be able to:
StrongInt x0(1); //construct it.
auto x1 = new StrongInt[100000]; //construct it without initialization
auto x2 = new StrongInt[10](); //construct it with initialization
I have seen things like:
class StrongInt
{
int value;
public:
explicit StrongInt(int v) : value(v) {}
operator int () const { return value; }
};
or
class StrongInt
{
int value;
public:
StrongInt() : value(0) {} //fails 'construct it without initialization
//StrongInt() {} //fails 'construct it with initialization
explicit StrongInt(int v) : value(v) {}
operator int () const { return value; }
};
Since these things are not POD's, they do not quite work.
autokeyword to mean something new -- now it means "automatically deduce the type". It's kind of silly to use it here, but it's really handy for complex template type names that are hard to type. – Ernest Friedman-Hill May 19 '12 at 15:00auto. – Fanael May 19 '12 at 15:05autodoesn't affect the question in any way). – Ben Voigt May 19 '12 at 15:14autokeyword, but in C++03 it doesn't compile, so I felt the necessity to tag it as C++11. But you're right about it being irrelevant to the question itself. – Eitan T May 19 '12 at 15:24