Samir Bhogayta
What is Sealed modifiers?
By Samir Bhogayta in OOP/OOD on Sep 03 2015
  • Ravi Patel
    Oct, 2016 18

    the sealed keyword is used to prevent inheritance

    • 2
  • Keerthi Venkatesan
    Apr, 2016 4

    The sealed modifier is used to prevent derivation from a class. An error occurs if a sealed class is specified as the base class of another class.

    • 1
  • Mukesh Kumar
    Aug, 2017 29

    Sealed is keyword if we want stop inheritance then we use Seale before class & for stopping ovrriding we use Sealed before method

    • 0
  • Prakash Tripathi
    Apr, 2016 10

    Nice explanation Dheeraj Kumar Jha.

    • 0
  • Dheeraj Kumar Jha
    Mar, 2016 16

    We know that sealed keyword teaches me security related information. OK so whenever we talk about sealed , sealed is a keyword in Oops, which is used for some particular behavior that means when we want to a method that is work for only for me i.e. particular class and we want that function can't use by the other class in that case we go for function or class mark as a sealed. sealed is a keyword which is used to seal a class or function and prevent it to get inherited from any other classes. In other words, a sealed class cannot be inherited. similarly function can't be used by the other class.

    • 0
  • Samir Bhogayta
    Sep, 2015 3

    Sealed types cannot be inherited & are concrete. Sealed modifiers can also be applied to instance methods, properties, events & indexes. It can't be applied to static members.Sealed members are allowed in sealed and non-sealed classes.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS