Click here to Skip to main content
15,881,719 members
Articles / Programming Languages / C#

C# Tweaks – Why To Use the sealed Keyword on Classes?

Rate me:
Please Sign up or sign in to vote.
4.90/5 (40 votes)
12 Aug 2011CPOL2 min read 97.9K   18   23
Why to use the sealed keyword on classes?

The sealed keyword is one of the very seldom used modifiers in C#. Probably most of you know what it is for, but many developers have not ever used it.

See C# Programmers Guide if you are not sure you remember what the keyword is good for: sealed keyword (MSDN).

Why Shall I Use It?

The most popular, but not really most important motivation is the performance – JIT compiler can produce more efficient code by calling the method non-virtually. I remember someone even made performance measurements, but I think that the real performance gain highly depends on algorithms in a specific use case.

The vast majority of .NET programmers let their classes “unsealed” without even considering making them sealed. If a class was not designedly made inheritable, it is very probably even impossible to inherit from it and override members reasonably. On the other hand, overriding members of the class which were not designed to be overridden might cause unpredictable results.

When a class is originally sealed, it can change to “unsealed” in the future without breaking compatibility.

Something New I’ve Discovered Recently

Recently, I was refactoring some component with multiple classes making intensive use of inheritance. During cleanup, I changed all leaf classes in inheritance tree, the classes which cannot be inherited anymore, to be sealed. I was sure it will not break compatibility, but the next compile failed.

The reason was a bug, which became visible only after I made some class sealed to compile time. Not being sealed, it would throw an exception during execution. This sample demonstrates the simplified version of this situation:

C#
interface IInterface1 {}

class Class1 {}

class Program
{
   static void Main(string[] args)
   {
     //Class1 does not implement IInterface1
     Class1 instanceOfClass1 = new Class1();

     //However this cast does not leads to compilation error
     IInterface1 someImplementer = (IInterface1)instanceOfClass1;
   }
}

Class1 does not implement IInterface1, however the cast of an instance of the Class1 to IInterface1 does not lead to compilation error. The reason is that theoretically some inherited class of the Class1 might implement this interface.

Now let’s make Class1 sealed. Now the compiler will see that Class1 can be only Class1 “itself” (and its base classes if applicable) and it does not implement interface IInterface1.

C#
internal interface IInterface1 {}

sealed class Class1 {}

class Program
{
    static void Main(string[] args)
    {
        //Class1 does not implement IInterface1
        Class1 instanceOfClass1 = new Class1();

        //However this cast does not leads to compilation error
        IInterface1 someImplementer = (IInterface1)instanceOfClass1;
    }
}

The following compilation error will occur:

Cannot convert type 'Class1' to 'IInterface1'

So using sealed keyword brings not only performance win and additional code access security but also helps to write bug free code, making better use of the .NET type safety.

My recommendation: Always declare a new class as sealed until you are writing an abstract class or a class which must be inherited per design. Most classes in a real application (except you are writing a widely used library) can be made sealed.

P.S. You can apply the sealed keyword not only to classes but also to some members. I am going to post about that as well.


License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Germany Germany
Tweeter: @gmamaladze
Google+: gmamaladze
Blog: gmamaladze.wordpress.com

Comments and Discussions

 
Question[My vote of 2] Not good Pin
Maxx Velocity22-Feb-17 9:54
Maxx Velocity22-Feb-17 9:54 
AnswerRe: [My vote of 2] Not good Pin
Franc Morales10-Feb-22 15:15
Franc Morales10-Feb-22 15:15 
GeneralMy vote of 5 Pin
Rohit Sardana27-Sep-16 18:47
professionalRohit Sardana27-Sep-16 18:47 
GeneralMy vote of 5 Pin
Mohammad Khalid117-May-16 20:49
Mohammad Khalid117-May-16 20:49 
AnswerNot a good idea Pin
Tobias Lawrenz27-Jan-15 2:45
Tobias Lawrenz27-Jan-15 2:45 
QuestionMy Vote of 5 Pin
ashok rathod23-Jul-14 20:35
professionalashok rathod23-Jul-14 20:35 
GeneralNice Article Pin
Amey K Bhatkar25-Mar-14 19:18
Amey K Bhatkar25-Mar-14 19:18 
GeneralMy vote of 5 Pin
Tarek Elqusi4-Mar-13 22:01
professionalTarek Elqusi4-Mar-13 22:01 
GeneralMy vote of 5 Pin
Nikhil_S27-Jul-12 1:59
professionalNikhil_S27-Jul-12 1:59 
GeneralMy vote of 1 Pin
Sergey Alexandrovich Kryukov3-Jun-12 21:47
mvaSergey Alexandrovich Kryukov3-Jun-12 21:47 
GeneralRe: My vote of 1 Pin
Paulo Zemek6-Jun-12 7:08
mvaPaulo Zemek6-Jun-12 7:08 
GeneralRe: My vote of 1 Pin
Sergey Alexandrovich Kryukov29-Jun-12 9:09
mvaSergey Alexandrovich Kryukov29-Jun-12 9:09 
GeneralRe: My vote of 1 PinPopular
Paulo Zemek29-Jun-12 9:23
mvaPaulo Zemek29-Jun-12 9:23 
GeneralMy vote of 5 Pin
AhsanS18-May-12 2:22
AhsanS18-May-12 2:22 
GeneralMy vote of 4 Pin
akosidab14-May-12 19:24
akosidab14-May-12 19:24 
Questionreally useful info Pin
Rahul Rajat Singh14-Feb-12 7:03
professionalRahul Rajat Singh14-Feb-12 7:03 
Question[My vote of 1] performance Pin
radioman.lt19-Oct-11 2:10
radioman.lt19-Oct-11 2:10 
AnswerRe: [My vote of 1] performance Pin
George Mamaladze19-Oct-11 4:51
George Mamaladze19-Oct-11 4:51 
GeneralRe: [My vote of 1] performance Pin
Sergey Alexandrovich Kryukov3-Jun-12 21:55
mvaSergey Alexandrovich Kryukov3-Jun-12 21:55 
AnswerRe: [My vote of 1] performance Pin
Sergey Alexandrovich Kryukov3-Jun-12 21:53
mvaSergey Alexandrovich Kryukov3-Jun-12 21:53 
QuestionVoted 5 Pin
zenwalker198514-Oct-11 0:27
zenwalker198514-Oct-11 0:27 
GeneralMy vote of 5 Pin
Reiss17-Aug-11 3:30
professionalReiss17-Aug-11 3:30 
QuestionGood info, small typo :) PinPopular
Anthony Daly15-Aug-11 5:38
Anthony Daly15-Aug-11 5:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.