Suppose I have a class that I want to make sure my compiler (GCC in this case) doesn't synthesize any constructors or assignment methods for. I've found one way to do this which is to just include a const int member in the class, but this doesn't rub me to well. Is there an attribute or something which signifies this.
|
If you define (or only declare) it yourself, then the compiler will not define it for you.
While the declaration is enough to prevent the compiler from generating default constructor, it is necessary to define it if your code requires the default constructor, otherwise you'll get linker error. In C++11 (the new ISO Standard), you can disable constructors, copy-constructor, and copy-assignment as:
Now the interesting partYou can also selectively disable constructor(s) for selected types which makes
Object of this class can be created not only with
Now suppose, for whatever reason, I don't want the users of class
Now here you go:
Online Demo : http://ideone.com/ZVyK7 The error messages are very clear:
|
|||||
|
|
The classical way is to declare them, but never implement. Most people would expect that declaration to be private or protected. In C++0x, you can explicitly delete them. Which does pretty much the same thing, but is way nicer to read. |
|||
|
|
The C++ standard mandates that the compiler must create implicit default constructors, etc. if you don't define your own. If you don't want a publicly-accessible default constructor, you can do something like:
The same goes for copy-constructors, etc. |
|||||||||||||||||
|