Declaring a variable only to immediately return or throw it is considered a bad practice because it adds unnecessary complexity to the code. This practice can make the code harder to read and understand, as it introduces an extra step that doesn’t add any value. Instead of declaring a variable and then immediately returning or throwing it, it is generally better to return or throw the value directly. This makes the code cleaner, simpler, and easier to understand.
Declaring a variable only to immediately return or throw it is considered a bad practice because it adds unnecessary complexity to the code. To fix the issue, return or throw the value directly.
public long computeDurationInMilliseconds() {
long duration = (((hours * 60) + minutes) * 60 + seconds) * 1000;
return duration;
}
public long computeDurationInMilliseconds() {
return (((hours * 60) + minutes) * 60 + seconds) * 1000;
}
public void doSomething() {
RuntimeException myException = new RuntimeException();
throw myException;
}
public void doSomething() {
throw new RuntimeException();
}