Normalerweise würde ich das tun:
try
{
code
code that might throw an anticipated exception you want to handle
code
code that might throw an anticipated exception you want to handle
code
}
catch
{
}
Gibt es irgendwelche Vorteile, wenn man es so macht?
code
try
{
code that might throw an anticipated exception you want to handle
}
catch
{
}
code
try
{
code that might throw an anticipated exception you want to handle
}
catch
{
}
code
Aktualisieren:
Ich habe diese Frage ursprünglich mit Verweis auf C # gestellt, aber wie A. Levy kommentierte, kann sie für jede Ausnahmebehandlungssprache gelten, sodass die Tags dies widerspiegeln.