Привет, читаю документацию, раздел "Dead code examples", там написано:
In the following example else is never "used" as execution already ended at the return statement (the else construct has no use here), it's "dead code":
if (a)
{
return a;
}
else
{
b++:
return b;
}
Use this form instead:
if (a)
return a;
b++:
return b;
Мне кажется, что это бред. Так ли это в действительности или это опечатка?
(Аксапту не юзаю т.к. нет рег. ключа для режима конфигурирования...)
|