Top Ten Traps in C# for C++ Programmers中文版(转)(2)
2024-07-21 02:22:20
供稿:网友
陷阱六.虚方法必须被显式重载
在c#中,如果程序员决定重载一个虚方法,他(她)必须显式使用override关键字。
让我们考察一下这样做的好处。假定公司a写了一个window类,公司b购买了公司a的window类的一个拷贝作为基类。公司b的程序员从中派生【译注:原文为...using...,从下文来看,显然是“派生”之意。事实上,使用类的方式还有“组合”(也有说为“嵌入”或“包容”(com语义)等等),后者不存在下文所描述的问题】出listbox类和radiobutton类。公司b的程序员不知道或不能控制window类的设计,包括公司a将来对window类可能做的修改。
现在假定公司b的程序员决定为listbox类加入一个sort方法:
public class listbox : window
{
public virtual void sort() {}
}
这是没有问题的—直到公司a的window类作者发布了window类的版本2,公司a的程序员向window类也加入了一个public的sort方法:
public class window
{
public virtual void sort() {}
}
在c++中,window类新的虚方法sort将会作为listbox虚方法的基类方法。当你试图调用window的sort时,实际上调用的是listbox的sort。c#中虚方法【译注:原文写成virtual function】永远被认为是虚拟调度的根。这就是说,只要c#找到了一个虚方法,它就不会再沿着继承层次进一步寻找了,如果一个新的sort虚方法被引入window,listbox的运行时行为不会被改变。当listbox再次被编译时,编译器会发出如下警告:
"/class1.cs(54,24): warning cs0114: 'listbox.sort()' hides inherited member 'window.sort()'.
如果要使当前成员重载实现,可加入override关键字。否则,加上new关键字。
如果想要移去这个警告,程序员必须明确指明他的意图。可以将listbox的sort方法标为new,以指明它不是对window的虚方法的重载:
public class listbox : window
{
public new virtual void sort() {}
}
这样编译器就不会再警告。另一方面,如果程序员想重载window的方法,只要显式加上override关键字即可。
陷阱七:不可以在头部进行初始化
c#里的初始化不同于c++。假定你有一个类person,它有一个私有成员变量age;一个派生类employee,它有一个私有成员变量salaryleverl。在c++中,你可以在employee构造器的成员初始化列表部分初始化salarylevel:
employee::employee(int theage, int thesalarylevel):
person(theage) // 初始化基类
salarylevel(thesalarylevel) // 初始化成员变量
{
// 构造器体
}
在c#中,这个构造器是非法的。尽管你仍可以如此初始化基类,但对成员变量的初始化将导致一个编译时错误。你可以在成员变量声明处对其赋初始值:
class employee : public person
{
// 在这儿声明
private salarylevel = 3; //初始化
}
【译注:以上代码有误lc#中,正确写法如下:
class employee: person
{
private int salarylevel = 3;
}
】
你不需要在每一个类声明的后面都加上一个分号。每一个成员都必须要有显式的访问级别声明。
陷阱8.不能把布尔值转换为整型值
在c#中,布尔值(true、false)不同于整型值。因此,不能这么写:
if ( somefuncwhichreturnsavalue() )//【译注:假定这个方法不返回布尔值】
也不能指望如果somefuncwhichreturnsavalue返回一个0它将等于false,否则为true。一个好消息是误用赋值操作符而不是相等操作符的老毛病不会再犯了。因此,如果这么写:
if ( x = 5 )
将会得到一个编译时错误,因为x = 5的结果为5,而它不是布尔值。
【译注:以下是c++里一不小心会犯的逻辑错误,编译器不会有任何提示l运行得很顺畅,不过结果并不是你想要的:
c++:
#include "stdafx.h"
int main(int argc, char* argv[])
{
int n = 0;
if (n = 1)//编译器啥都没说l一般推荐写为1 == n,万一写成1 = n编译器都不同意j
{
printf("1/n");
}
else
{
printf("0/n");
}
return 0;
}
以上运行结果为1,这未必是你想要的。
c#:
using system;
public class rytestboolapp
{
public static void main()
{
int n = 0;
if (n = 1)//编译器不同意j无法将int转换成bool
{
console.writeline("1");
}
else
{
console.writeline("0");
}
}
}
但如果是这种情况:
bool b = false;
if (b = true)
...
不管是c++还是c#都没招l
】
【译注:c++程序员一般是喜欢这种自由的写法:
if (myref)
if (myint)
但在c#里,必须写成:
if (myref != null)//或if (null != myref)
if (myint != 0)//或if (0 != myint)
等。
】
陷阱九.switch语句不可“贯穿”【译注:即fall through,beta2的联机文档就是如此译法】
在c#中,如果在case语句里有代码的话,那它就不可“贯穿”到下一句。因此,尽管下面代码在c++里合法,但在c#中则不然:
switch (i)
{
case 4:
callfuncone();
case 5: // 错误,不可以“贯穿”
callsomefunc();
}
为了达到这个目的,需要显式地使用goto语句:
switch (i)
{
case 4:
callfuncone();
goto case 5;
case 5:
callsomefunc();
}
如果case语句没做任何事(里面没有代码)就可以“贯穿”:
switch (i)
{
case 4: // 可以“贯穿”
case 5: // 可以“贯穿”
case 6:
callsomefunc();
}
【译注:以下是使用switch的完整例子,它还说明了switch语句的参数类型可以是字符串,此例同时还演示了属性的使用方法。
using system;
class ryswitchtest
{
public ryswitchtest(string astr)
{
this.strproperty = astr;
}
protected string strfield;
public string strproperty
{
get
{
return this.strfield;
}
set
{
this.strfield = value;
}
}
public void switchstrproperty()
{
switch (this.strproperty)
{
case ("ry01"):
console.writeline("ry01");
break;
case ("ry02"):
console.writeline("ry02");
break;//如果这一行注释掉,编译器会报控制不能从一个case标签(case "ry02":)贯穿到另一个标签,如果你确实需要,可以这么写:goto case ("ry03");或goto default。
case ("ry03"):
console.writeline("ry03");
break;
default:
console.writeline("default");
break;
}
}
}
class ryswitchtestapp
{
public static void main()
{
ryswitchtest rst = new ryswitchtest("ry02");
rst.switchstrproperty();
}
}
】
陷阱十.c#需要明确的赋值操作
c#要求必须明确地进行赋值操作,这就意味所有变量在使用前必须被赋值。因此,尽管你可以声明未初始化的变量,但在它拥有值之前是不可以被传递到方法的。
这就引出了一个问题—当你仅仅是想将变量用作一个“出”参数按引用传递给方法时。例如,假定有个方法,返回当前的小时、分钟和秒。如果这么写:
int thehour;
int theminute;
int thesecond;
timeobject.gettime( ref thehour, ref theminute, ref thesecond)
编译将出错,因为在使用thehour、theminute和thesecond前,它们没有被初始化:
use of unassigned local variable 'thehour'
use of unassigned local variable 'theminute'
use of unassigned local variable 'thesecond'
可以将它们初始化为0或者其它什么无伤大雅的值以让讨厌的编译器安静下来:
int thehour = 0;
int theminute = 0;
int thesecond = 0;
timeobject.gettime( ref thehour, ref theminute, ref thesecond)
但是这种写法实在太愚蠢!我们的本意不过是想把这些变量按引用传递到gettime,在其中改变它们的值。为了解决这个问题,c#提供了out参数修饰符。这个修饰符避免了对引用参数也要初始化的需求。例如,为gettime提供的参数没有提供给方法任何信息,它们仅仅是想从方法里取得信息。因此,把这三个参数都标记为out型的,就避免了在方法外初始化它们的需要。但当从被传入的方法返回时,out参数必须被赋值。下面是改变后的gettime参数声明:
public void gettime(out int h, out int m, out int s)
{
h = hour;
m = minute;
s = second;
}
下面则是对gettime方法的新的调用方式:
timeobject.gettime( out thehour, out theminute, out thesecond);
【译注:完整示例如下:
c#:[例1:使用ref修饰的方法参数]
using system;
class ryreftest
{
public ryreftest()
{
this.intfield = 1;
this.strfield = "strfield";
}
protected int intfield;
protected string strfield;
public void getfields(ref int aint, ref string astr)
{
aint = this.intfield;
astr = this.strfield;
}
}
class ryreftestapp
{
public static void main()
{
ryreftest rrt = new ryreftest();
int intvar = 0;//如果是int intvar; 编译器会报使用了未赋值的变量intvar
string strvar = "0";//如果是string strvar; 编译器会报使用了未赋值的变量strvar
rrt.getfields(ref intvar, ref strvar);
console.writeline("intvar = {0}, strvar = {1}", intvar, strvar);
}
}
c#:[例2:使用out修饰的方法参数]
using system;
class ryreftest
{
public ryreftest()
{
this.intfield = 1;
this.strfield = "strfield";
}
protected int intfield;
protected string strfield;
public void getfields(out int aint, out string astr)
{
aint = this.intfield;
astr = this.strfield;
}
}
class ryreftestapp
{
public static void main()
{
ryreftest rrt = new ryreftest();
int intvar;//这样就可以了,如果写成int intvar = 0;当然也没问题j
string strvar; //这样就可以了,如果写成string strvar = "0";当然也没问题j
rrt.getfields(out intvar, out strvar);
console.writeline("intvar = {0}, strvar = {1}", intvar, strvar);
}
}
】