プロパティをローカル変数として使用することをお勧めします。いくつかの変数を使用するメソッドが多数ある場合、各メソッドで変数の値が変化します。これにより、何度も新しい変数を作成する必要がなくなり、コードが増加します。なにか提案を?
private void method1(){
int totalLength = length1 + 10;
int totalBreath = (breath1 + breath2) + 20;
int size = (totalLength * totalLength);
System.out.println(size);
}
private void method2(){
int totalLength = length1 + 20;
int totalBreath = (breath1 + breath2) + 30;
int size = (totalLength * totalLength);
System.out.println(size);
}
private void method3(){
int totalLength = length1 + 60;
int totalBreath = (breath1 + breath2) + 10;
int size = (totalLength * totalLength);
System.out.println(size);
}
ご覧のとおり、totalLength、totalBreath、size はすべてのメソッドで繰り返されます。それらをクラスのフィールドとして作成できますか? したがって、すべてのメソッドで宣言する必要はありません。
private void method1(){
totalLength = length1 + 10;
totalBreath = (breath1 + breath2) + 20;
size = (totalLength * totalLength);
System.out.println(size);
}