Normalement, je ferais ceci:
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
{
}
Y a-t-il des avantages à le faire de cette façon?
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
Mise à jour:
J'ai initialement posé cette question avec une référence à C #, mais comme l'a fait remarquer A. Levy, elle pourrait s'appliquer à n'importe quel langage de gestion des exceptions, j'ai donc fait en sorte que les balises reflètent cela.