Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why are methods virtual by default in Java, but non-virtual by default in C#? [closed]

Tags:

java

c#

oop

In Java, methods are virtual by default; C# is the opposite.

Which is better? What are the advantages and disadvantages in each approach?

like image 408
SNA Avatar asked Jun 10 '09 00:06

SNA


2 Answers

Anders Hejlsberg: (C# lead architect)

There are several reasons. One is performance. We can observe that as people write code in Java, they forget to mark their methods final. Therefore, those methods are virtual. Because they're virtual, they don't perform as well. There's just performance overhead associated with being a virtual method. That's one issue.

A more important issue is versioning. There are two schools of thought about virtual methods. The academic school of thought says, "Everything should be virtual, because I might want to override it someday." The pragmatic school of thought, which comes from building real applications that run in the real world, says, "We've got to be real careful about what we make virtual."

When we make something virtual in a platform, we're making an awful lot of promises about how it evolves in the future. For a non-virtual method, we promise that when you call this method, x and y will happen. When we publish a virtual method in an API, we not only promise that when you call this method, x and y will happen. We also promise that when you override this method, we will call it in this particular sequence with regard to these other ones and the state will be in this and that invariant.

Every time you say virtual in an API, you are creating a call back hook. As an OS or API framework designer, you've got to be real careful about that. You don't want users overriding and hooking at any arbitrary point in an API, because you cannot necessarily make those promises. And people may not fully understand the promises they are making when they make something virtual.

like image 56
arul Avatar answered Oct 22 '22 04:10

arul


Java's way is simpler, C#'s way is more granular, safer and more efficient by default. Which is better is in the eye of the beer holder.

like image 35
Gerald Avatar answered Oct 22 '22 04:10

Gerald