Eclipseは、次のコードでその警告を表示します。
public int getTicket(int lotteryId, String player) {
try {
c = DriverManager.getConnection("jdbc:mysql://" + this.hostname + ":" + this.port + "/" + this.database, this.user, this.password);
int ticketNumber;
PreparedStatement p = c.prepareStatement(
"SELECT max(num_ticket) " +
"FROM loteria_tickets " +
"WHERE id_loteria = ?"
);
p.setInt(1, lotteryId);
ResultSet rs = p.executeQuery();
if (rs.next()) {
ticketNumber = rs.getInt(1);
} else {
ticketNumber = -1;
}
ticketNumber++;
p = c.prepareStatement(
"INSERT INTO loteria_tickets " +
"VALUES (?,?,?,?)");
p.setInt(1, lotteryId);
p.setInt(2, ticketNumber);
p.setString(3, player);
p.setDate(4, new Java.sql.Date((new Java.util.Date()).getTime()));
p.executeUpdate();
return ticketNumber;
} catch (Exception e) {
e.printStackTrace();
} finally {
if (c != null) {
try {
c.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
return -1;
}
}
私のコードの何が問題になっていますか?
returnステートメントを削除します。最終ブロックはクリーンアップブロックと見なされ、通常は戻りが期待されていません。
return
からのfinally
は、さらに例外のスローを「オーバーライド」します。
public class App {
public static void main(String[] args) {
System.err.println(f());
}
public static int f() {
try {
throw new RuntimeException();
} finally {
return 1;
}
}
}
1
通常、finally
ブロックは、他のreturn
-- statementsまたはExceptions
を上書きするため、returnステートメントを使用しないでください。
さらに詳しい情報や背景の詳細な回答については、質問をご覧ください。
return
ブロック内のthrow
およびfinally
ステートメントの両方を使用すると、警告が表示されます。たとえば、次のfinallyブロックでも同じ警告が表示されます。
...
}finally{
throw new RuntimeException("from finally!");
}
...
catch
ブロックがない場合は、finally
ブロックを互いに直接入れ子にする必要があります。コードがtry/catch/finallyブロックの終わりを超えて続行できるようにする例外をキャッチするだけです。例外をキャッチしないと、finallyブロックの後はコードを取得できません!
これがどのように機能するかを見ることができます Repl.itのこの例で
testing if 0 > 5 ?
try1
try2
finally3
catch1
finally2
After other finally
finally1
end of function
testing if 10 > 5 ?
try1
try2
try3
success
finally3
finally2
finally1
class Main {
public static void main(String[] args) {
isGreaterThan5(0);
isGreaterThan5(10);
}
public static boolean isGreaterThan5(int a)
{
System.out.println();
System.out.println("testing if " + a + " > 5 ?");
try
{
System.out.println("try1");
try
{
System.out.println("try2");
try
{
if (a <= 5)
{
throw new RuntimeException("Problems!");
}
System.out.println("try3");
System.out.println("success");
return true;
}
finally
{
System.out.println("finally3");
}
}
catch (Exception e)
{
System.out.println("catch1");
}
finally
{
System.out.println("finally2");
}
System.out.println("After other finally");
}
catch (Exception e)
{
System.out.println("failed");
return false;
}
finally
{
System.out.println("finally1");
}
System.out.println("end of function");
return false;
}
}