Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Difference between Interface, abstract class, sealed class, static class and partial class in c#? If all classes available in vb.net?

share|improve this question
11  
Read a book, or an introduction to C#. Or if you are brave, the ECMA spec. – leppie Jan 21 '11 at 6:38
2  
@leppie - The ECMA spec is surprisingly easy to follow in my opinion. – ChaosPandion Jan 21 '11 at 6:39
@ChaosPandion: Yes, I agree, but not for a novice that do not understand the underlying concepts. – leppie Jan 21 '11 at 6:40
@ChaosPandion haha, I often found it simpler than msdn docs :) – nawfal May 15 at 9:01

closed as not constructive by animuson, gnat, EdChum, partlov, Alies Belik Feb 26 at 9:26

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

  • Interface: method definitions only

  • Abstract class: some method implementations, some methods abstract (method definition only)

  • Sealed class: A class from which you may not inherit

  • Static class: a class with only static methods (no instances exist, all methods may be called without an instance)

  • Partial class: A class that is defined in 2 or more separate class definitions in different modules.

Yes, they are all available in both C# and VB, although VB uses different keywords in some cases.

share|improve this answer
  • abstract classes
    Should be used when there is a IS-A relationship and no instances should be allowed to be created from that abstract class. Example: An Animal is an abstract base class where specific animals can be derived from, i.e. Horse, Pig etc. By making Animal abstract it is not allowed to create an Animal instance.

  • interface
    An interface should be used to implement functionality in a class. Suppose we want a horse to be able to Jump, an interface IJumping can be created. By adding this interface to Horse, all methods in IJumping should be implemented. In IJumping itself only the declarations (e.g. StartJump and EndJump are defined), in Horse the implementations of these two methods should be added.

  • sealed class
    By making Horse sealed, it is not possible to inherit from it, e.g. making classes like Pony or WorkHorse which you like to be inheriting from Horse.

  • static class
    Mostly used for 'utility' functions. Suppose you need some method to calculate the average of some numbers to be used in the Horse class, but you don't want to put that in Horse since it is unrelated and it also is not related to animals, you can create a class to have this kind of methods. You don't need an instance of such a utility class.

  • partial class
    A partial class is nothing more than splitting the file of a class into multiple smaller files. A reason to do this might be to share only part of the source code to others. If the reason is that the file gets too big, think about splitting the class in smaller classes first.

share|improve this answer

Following are the difference between abstract and interface,

  1. Abstract class having method declaration as well as method method definition whereas interface having method declaration only.

  2. Abstract class are known as partial abstract class whereas interface is known as fully abstract class.

  3. Abstract class features we have to inherit to the child class whereas interface features we have to implement in the child classes.

  4. Abstract class support access specifiers whereas interface doesn't support access specifiers.

  5. Abstract class have normal variable as well as constant variable whereas interface does not have constant variables.

  6. We can write constructor in abstract class whereas we can't write constructor in interface.

share|improve this answer

I guess following link will be useful for you.

http://devworkexperience.com/2011/09/interfaces-vs-abstract-classes/

the basic logical difference is you create abstract class when there is a relation between two classes that will inherit the abstract class and you create interface for the classes which are not related to each other but do have some common functionality.

share|improve this answer

A 'normal' class can be instantiated at runtime to form an Object with fields (fields are properties, functions, events, etc). A 'normal' class can also be inherited/sub-classed.

Adding one of the extra keywords change the way the class works.

  • Adding public, private, protected changes the way other code can see and use this class.
  • Adding static to a class means you can't create an instance with the new keyword but you can only access it through static fuction. Example: String.IsNullOrEmpty().
  • Adding sealed to a class means no other class can inherit the 'sealed' class.

Interfaces are 'contracts' that say an implementing class will supply some functionality. The IDisposable interface says that all classes implementing it will have a Dispose function.

share|improve this answer

In abstract class can provide more functionality without affecting child class. In interface,if we add any method to interface ,then it will affect all the child class.

share|improve this answer
1  
I think you should elaborate more your post to ensure it provides a proper answer to OP. Please also have a look to our FAQ : stackoverflow.com/faq. Good luck. – ForceMagic Nov 12 '12 at 7:08

Not the answer you're looking for? Browse other questions tagged or ask your own question.