8.13 Versioning

8.13 Versioning
Versioning is the process of evolving a component over time in a compatible
manner. A new version of a
component is source compatible with a previous version if code that depends
on the previous version can,
when recompiled, work with the new version. In contrast, a new version of a
component is binary
compatible if an application that depended on the old version can, without
recompilation, work with the new
version.
Most languages do not support binary compatibility at all, and many do
little to facilitate source
compatibility. In fact, some languages contain flaws that make it
impossible, in general, to evolve a class
over time without breaking at least some client code.
As an example, consider the situation of a base class author who ships a
class named Base. In the first
version, Base contains no method F. A component named Derived derives from
Base, and introduces
an F. This Derived class, along with the class Base on which it depends, is
released to customers, who
deploy to numerous clients and servers.
// Author A
namespace A
{
public class Base // version 1
{
}
}
Chapter 8 Language Overview
47
// Author B
namespace B
{
class Derived: A.Base
{
public virtual void F() {
System.Console.WriteLine("Derived.F");
}
}
}
So far, so good, but now the versioning trouble begins. The author of Base
produces a new version, giving it
its own method F.
// Author A
namespace A
{
public class Base // version 2
{
public virtual void F() { // added in version 2
System.Console.WriteLine("Base.F");
}
}
}
This new version of Base should be both source and binary compatible with
the initial version. (If it weren.t
possible to simply add a method then a base class could never evolve.)
Unfortunately, the new F in Base
makes the meaning of Derived.s F unclear. Did Derived mean to override
Base.s F? This seems unlikely,
since when Derived was compiled, Base did not even have an F! Further, if
Derived.s F does override
Base.s F, then it must adhere to the contract specified by Base.a contract
that was unspecified when
Derived was written. In some cases, this is impossible. For example, Base.s
F might require that overrides
of it always call the base. Derived.s F could not possibly adhere to such a
contract.
C# addresses this versioning problem by requiring developers to state their
intent clearly. In the original
code example, the code was clear, since Base did not even have an F.
Clearly, Derived.s F is intended as a
new method rather than an override of a base method, since no base method
named F exists.
If Base adds an F and ships a new version, then the intent of a binary
version of Derived is still clear.
Derived.s F is semantically unrelated, and should not be treated as an
override.
However, when Derived is recompiled, the meaning is unclear.the author of
Derived may intend its F to
override Base.s F, or to hide it. Since the intent is unclear, the compiler
produces a warning, and by default
makes Derived.s F hide Base.s F. This course of action duplicates the
semantics for the case in which
Derived is not recompiled. The warning that is generated alerts Derived.s
author to the presence of the
F method in Base.
If Derived.s F is semantically unrelated to Base.s F, then Derived.s author
can express this intent.and,
in effect, turn off the warning.by using the new keyword in the declaration
of F.
// Author A
namespace A
{
public class Base // version 2
{
public virtual void F() { // added in version 2
System.Console.WriteLine("Base.F");
}
}
}
C# LANGUAGE SPECIFICATION
48
// Author B
namespace B
{
class Derived: A.Base // version 2a: new
{
new public virtual void F() {
System.Console.WriteLine("Derived.F");
}
}
}
On the other hand, Derived.s author might investigate further, and decide
that Derived.s F should
override Base.s F. This intent can be specified by using the override
keyword, as shown below.
// Author A
namespace A
{
public class Base // version 2
{
public virtual void F() { // added in version 2
System.Console.WriteLine("Base.F");
}
}
}
// Author B
namespace B
{
class Derived: A.Base // version 2b: override
{
public override void F() {
base.F();
System.Console.WriteLine("Derived.F");
}
}
}
The author of Derived has one other option, and that is to change the name
of F, thus completely avoiding
the name collision. Although this change would break source and binary
compatibility for Derived, the
importance of this compatibility varies depending on the scenario. If
Derived is not exposed to other
programs, then changing the name of F is likely a good idea, as it would
improve the readability of the
program.there would no longer be any confusion about the meaning of F.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值