Tuesday, November 01, 2005

Versioning, Virtual, and Override: "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."

0 Comments:

Post a Comment

<< Home