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

This question is out of curiosity. Is there a difference between:

public abstract class MyClass
{
    public MyClass()
    {
    }
}

and

public abstract class MyClass
{
    protected MyClass()
    {
    }
}

Thanks.

share|improve this question

3 Answers

up vote 10 down vote accepted

They are the same for all practical purposes.

But since you asked for differences, one difference I can think of is if you are searching for the class's constructor using reflection, then the BindingFlags that match will be different.

BindingFlags flags = BindingFlags.Public | BindingFlags.Instance;
var constructor = typeof(MyClass).GetConstructor(flags, null, new Type[0], null);

This will find the constructor in one case, but not the other.

share|improve this answer

You shouldn't have a public constructor in an Abstract class Constructors on abstract types can only be called by derived types. Because public constructors create instances of a type, and you cannot create instances of an abstract type, an abstract type with a public constructor is incorrectly designed.

have a look here for details http://msdn.microsoft.com/en-us/library/ms182126.aspx

share|improve this answer
@Shekhar: please don't post MSDN links to old versions. Readers clicking links within that document will be led to more old versions. – John Saunders Dec 26 '10 at 0:08
@John oh thanx for editing my post. I forgot to look for the version on the page.... :P – Shekhar_Pro Dec 26 '10 at 0:15
This is wrong. You can have public constructors, but as far as usage, there is no difference between a public and protected constructor in abstract classes. – Janiels Dec 26 '10 at 0:51
This answer is wrong. You can have public constructors on abstract types. You can have internal, protected, protected internal or private constructors. You just can't call them directly on the abstract type - you can only call them from derived non-abstract types. And all constructors, not matter the accessor, will create instances, not just public constructors. And you must define public constructors on abstract classes if you wish derived classes to be publicly created so it is a valid design to do so. – Enigmativity Dec 26 '10 at 1:04
3  
"is incorrectly designed" is quite different from "can't have". – Ben Voigt Dec 26 '10 at 1:07
show 4 more comments

In terms of future use of this code, there is no difference.

share|improve this answer

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.