Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
abstract class CAbstract
{
   private string mParam1;
   public CAbstract(string param1)
   {
      mParam1 = param1;
   }
}

class CBase : CAbstract
{
}

For the class CBase, it should be initialized by providing the parameter, so how to disable the parameterless constructor for CBase class?

share|improve this question
13  
Is it too late to complain about the horrendous MFC-ish style of prefixing class names with a C, which is absolutely against commonly practiced C# and .Net coding styles? ;) – Sven Jun 17 '11 at 16:48
possible duplicate of Prevent usage of default constructor – Ruben Bartelink Mar 19 at 23:46

3 Answers

up vote 16 down vote accepted

If you define a parameterized constructor in CBase, there is no default constructor. You do not need to do anything special.

If your intention is for all derived classes of CAbstract to implement a parameterized constructor, that is not something you can (cleanly) accomplish. The derived types have freedom to provide their own members, including constructor overloads.

The only thing required of them is that if CAbstract only exposes a parameterized constructor, the constructors of derived types must invoke it directly.

class CDerived : CAbstract
{
     public CDerived() : base("some default argument") { }
     public CDerived(string arg) : base(arg) { }
}
share|improve this answer
1  
+1 for the extra bit on constraining derived classes. This is why writing good OOP libraries is hard. – sixlettervariables Jun 8 '11 at 1:56
OP states that default constructor is not needed. Why do you show default constructor in your code? – Alex Aza Jun 8 '11 at 3:26
@Alex, the question is ambiguous, at least to me, hence my second and third paragraphs and the accompanying code snippet. I cannot absolutely tell what he wants, but my feeling is that what he wants is something the language does not provide. – user414076 Jun 8 '11 at 3:32
What i want is to disable the default ctor for all the derived class of CAbstract, but it seems to be impossible to do this – Carlos Liu Jun 9 '11 at 1:56
@Carlos_Liu Have you tried my answer? I think it is the solution you are looking for. – sergiol Nov 15 '11 at 2:13

To disable default constructor you need to provide non-default constructor.

The code that you pasted is not compilable. To make it compilable you could do something like this:

class CBase : CAbstract
{
    public CBase(string param1)
        : base(param1)
    {
    }
}
share|improve this answer
1  
+1, this is on target. – sixlettervariables Jun 8 '11 at 1:54

Please correct me if I am wrong, but I think I achieved that goal with this code:

//only for forbiding the calls of constructors without parameters on derived classes
public class UnconstructableWithoutArguments
{
    private UnconstructableWithoutArguments()
    {
    }

    public UnconstructableWithoutArguments(params object[] list)
    {
    }
}
share|improve this answer
2  
This does not prevent children from providing parameter-less constructors, it only forces children to invoke the base parameterized constructor explicitly. – user414076 Nov 15 '11 at 3:04

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.