-2
インデックスの++がデッドコードである理由を教えてくれる人が必要なので、自分で修正しようとすることができます。Javaプログラミングのデッドコード
HERESに1つの
public class ManagementCompany {
private String name;
private String taxID;
private Property[] properties;
private double mgmFeePer;
private final int MAX_PROPERTY = 5;
public ManagementCompany(String name, String taxID, double mgmFee)
{
properties = new Property[MAX_PROPERTY];
this.name = name;
this.taxID = taxID;
this.mgmFeePer = mgmFee;
}
public int getMAX_PROPERTY()
{
return MAX_PROPERTY;
}
public int addProperty(Property property)
{
for(int index = 0; index < properties.length; index++)
{
properties[index] = property;
return (index + 1);
}
return -1;
}
相続クラス私の他のクラスのための私のコード。しかし、それが必要かどうかわからない
forループの内部からすぐに戻るので、インデックスをインクリメントする必要はありません。 – AlexC
forループが本当にループしないのはなぜですか? –