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

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.

share|improve this question

3 Answers

up vote 13 down vote accepted

If you define (or only declare) it yourself, then the compiler will not define it for you.

struct A
{
     A (); /*declaration is enough to prevent the compiler from 
             generating default constructor!*/
};

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:

struct A
{
    A(const A&) = delete             //disable copy-constructor
    A& operator=(const A&) = delete; //disable copy-assignment
};

Now the interesting part

You can also selectively disable constructor(s) for selected types which makes delete more interesting. Consider this,

struct A
{
       A (int) {}
};

Object of this class can be created not only with int argument, but any type which implicitly converts to int. For example,

A a1(10);  //ok
A a2('x'); //ok - char can convert to int implicitly

B b; 
A a3(b); //ok - assume b provides user-defined conversion to int

Now suppose, for whatever reason, I don't want the users of class A to create objects with char or class B , which fortunately or unfortunately can implicitly convert to int, then you can disable them as:

struct A
{
     A(int) {}
     A(char) = delete;      //disable
     A(const B&) = delete;  //disable
};

Now here you go:

A a1(10);  //ok
A a2('x'); //error

B b; 
A a3(b); //error - assume (even if) b provides user-defined conversion to int

Online Demo : http://ideone.com/ZVyK7

The error messages are very clear:

prog.cpp:9:5: error: deleted function 'A::A(char)'
prog.cpp:10:5: error: deleted function 'A::A(const B&)'

share|improve this answer
1  
+1 for the nifty example! – Blindy Aug 22 '11 at 19:55

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.

share|improve this answer
Note also that boost has a boost::noncopyable class that can be used as a private base in a class that wants to delete the copy constructor (and operator=) – bdonlan Aug 22 '11 at 18:04

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:

class Foo
{
private:
    Foo() {} // Private default constructor
};

The same goes for copy-constructors, etc.

share|improve this answer
3  
Isn’t declaring, instead of defining, enough? If the class really doesn’t need any constructor, I’d prefer that. – Konrad Rudolph Aug 22 '11 at 17:52
@Konrad: Exactly. My thought. Definition is not needed. Declaration is enough! – Nawaz Aug 22 '11 at 17:54
1  
@Konrad: I can never remember whether it's enough merely to declare it. It's two extra characters, so I've erred on the safe side! – Oli Charlesworth Aug 22 '11 at 17:55
1  
@Oli The difference is that in your case the constructor can still be accidentally called – within the class and friends – whereas if you merely declare it, this can never happen (the linker complains about missing definition). It gives you a (granted, very) small bit of extra safety. – Konrad Rudolph Aug 22 '11 at 18:19
Any user-defined constructor (even a deleted copy constructor in C++0x!) will inhibit the creation of a default constructor, so this is the least of the problems. – UncleBens Aug 22 '11 at 18:22

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.