我最近开始用 Java 编码,我遇到了这个死代码问题。我一直在 Stack Overflow 上查看其他问题(和答案),但我还没有找到解决方案。希望您能提供帮助。问题发生在t++
public static boolean constraint2(int [][] xmatrix, int [][] ymatrix){
for(int l = 0; l < xmatrix.length; l++){
for(int t = 0; t < xmatrix[0].length; t++){ // DEAD CODE at "t++"
if(b[t]*xmatrix[l][t] > ymatrix[l][t]){
return false;
}
else{
return true;
}
}
}
return false;
}