Can you prevent a class from overriding?

Answers were Sorted based on User's Feedback



Can you prevent a class from overriding?..

Answer / techy_unknown

Hi,

I think the question itself is illogical.

The term "overriding" is ONLY and ONLY associated with
methods/properties not to the class.

So, if the question is put a like, "How to prevent methods
not to be overriden?" then the answer is: "Make them non-
virtual."

And if the question is put a like, "How to prevent the
inheritance for a specific class?" then the answer
is, "Make the calss sealed."

I really hope that the reply makes sense here.

Is This Answer Correct ?    38 Yes 1 No

Can you prevent a class from overriding?..

Answer / aa

make the class sealed

Is This Answer Correct ?    6 Yes 7 No

Can you prevent a class from overriding?..

Answer / nazrul

we can use sealed keyword at the time of declartion of class
thorugh which it won't inherit and won't be overide.

Is This Answer Correct ?    4 Yes 6 No

Post New Answer

More C Sharp Interview Questions

What is difference between dll and exe in c#?

0 Answers  


What are async and await?

0 Answers  


Why is c# better than java?

0 Answers  


is it possible to access a remote web service Without UDDI?

0 Answers   TCS,


Why can?t you specify the accessibility modifier for methods inside the interface?

5 Answers  






What is virtual in c#?

0 Answers  


What is the usage of transponders?

0 Answers   Wipro,


What are the advantages of interface in c#?

0 Answers  


What is the process of delegation?

0 Answers  


What is tpl in c#?

0 Answers  


How do I type a whitespace character?

0 Answers  


What is constants in c#?

0 Answers  


Categories