DatasetVector datasetvector=(DatasetVector)dataset;
           if (datasetvector == null) {
               continue;
           }

这时候,没有其他操作的情况下,datasetvector肯定是不为null的
因此,在下面的判断中,
if里面总是成立
dead code的提示,意思是告诉你 那句代码不可能执行到

dead code 死代码 无作用的代码

相关文章:

  • 2021-12-03
  • 2021-09-22
  • 2022-12-23
  • 2021-10-16
  • 2021-06-23
  • 2022-02-18
  • 2021-11-03
  • 2022-01-13
猜你喜欢
  • 2022-01-13
  • 2021-09-23
  • 2022-12-23
  • 2021-10-14
  • 2021-06-14
  • 2022-01-25
  • 2022-12-23
相关资源
相似解决方案