我有以下代码:
private const FlyCapture2Managed.PixelFormat f7PF = FlyCapture2Managed.PixelFormat.PixelFormatMono16;
public PGRCamera(ExamForm input, bool red, int flags, int drawWidth, int drawHeight) {
if (f7PF == FlyCapture2Managed.PixelFormat.PixelFormatMono8) {
bpp = 8; // unreachable warning
}
else if (f7PF == FlyCapture2Managed.PixelFormat.PixelFormatMono16){
bpp = 16;
}
else {
MessageBox.Show("Camera misconfigured"); // unreachable warning
}
}
我知道这段代码无法访问,但我不希望出现该消息,因为它是编译时的配置,只需要更改常量来测试不同的设置,并且每像素位数(bpp)会发生变化取决于像素格式。是否有一个很好的方法让一个变量保持不变,从中导出另一个变量,但不会导致无法访问的代码警告?请注意,我需要两个值,在相机启动时需要将其配置为正确的像素格式,我的图像理解代码需要知道图像的位数。
那么,是否有一个好的解决方法,或者我只是忍受这个警告?
答案 0 :(得分:9)
最好的方法是禁用文件顶部的警告:
#pragma warning disable 0162
另一种方法是将您的const
转换为static readonly
。
private static readonly FlyCapture2Managed.PixelFormat f7PF =
FlyCapture2Managed.PixelFormat.PixelFormatMono16;
但是,如果性能对您的代码很重要,我建议将其保留为const
并禁用警告。虽然const
和static readonly
在功能上是等效的,但前者允许更好的编译时优化,否则可能会丢失。
答案 1 :(得分:6)
作为参考,您可以通过以下方式将其关闭:
#pragma warning disable 162
..并重新启用:
#pragma warning restore 162
答案 2 :(得分:2)
您可以使用Dictionary
查找替换条件以避免警告:
private static IDictionary<FlyCapture2Managed.PixelFormat,int> FormatToBpp =
new Dictionary<FlyCapture2Managed.PixelFormat,int> {
{FlyCapture2Managed.PixelFormat.PixelFormatMono8, 8}
, {FlyCapture2Managed.PixelFormat.PixelFormatMono16, 16}
};
...
int bpp;
if (!FormatToBpp.TryGetValue(f7PF, out bpp)) {
MessageBox.Show("Camera misconfigured");
}
答案 3 :(得分:1)