我正在做一个需要执行两种不同操作的项目。我的主控制器方法中有一个 finally 块。
我的问题是,我最后能不能有两个以上,例如:
class test
{
X()
{
try
{
//some operations
}
finally
{
// some essential operation
}
}
//another method
Y()
{
try
{
//some operations
}
finally
{
// some another essential operation
}
}
}
那么,有可能吗?