由于需求来回变化,我们的代码中有一些使用 const 的 if/else 块,例如:
const bool DisplayAverageValues = true;
if(DisplayAverageValue)
{
// Do this
}
else
{
// Do that
}
由于需求可能会再次发生变化,我们不想删除当前未使用的代码 - 下周可能需要它。我们也不想注释掉未使用的代码,因为我们希望它成为任何重构的一部分。只需更改布尔值,它就可以随时进行编译。
问题是我们收到了无法访问代码的警告,所以我正在考虑用预处理器#if/#else 替换标准的 if/else 块。
#define DisplayAverageValues
#if DisplayAverageValue
// Do this
#else
// Do that
#endif
我现在面临的问题是预处理器符号不能设置为false,它只能定义或未定义。从以下位置更改会更加明显:
#define DisplayAverageValues true
至
#define DisplayAverageValues false
代替
#undef DisplayAverageValues
或者
//#define DisplayAverageValues
(如果在其他地方使用了相同的符号名称,这可能会导致麻烦)。
有没有更好的办法?