4
votes
5answers
200 views
try finally mystery
Consider,
static void Main(string[] args)
{
Console.WriteLine(fun());
}
static int fun()
{
int i = 0;
…
3
votes
6answers
202 views
Java uninitialized variable with finally curiosity
I was trying to come up with obscure test cases for an alternative open-source JVM I am helping with (Avian) when I came across an interesting bit of code, and I was surprised that …
0
votes
15answers
1k views
c# “finally” block that only runs on exceptions.
Edit: I have looked at the answers code: NONE of them do what I want (I've checked). It would seem that there is no way to do what I want in native c#. I guess that's not a disaste …
5
votes
4answers
413 views
Does try/finally ignore exceptions?
I have a situation where I want certain code to be executed no matter what happens, but I need exceptions to also be passed on up the stack to be handled later. Is the following:
…
13
votes
3answers
1k views
Curious C# using statement expansion
I've run ildasm to find that this:
using(Simple simp = new Simple())
{
Console.WriteLine("here");
}
generates IL code that is equivalent to this:
Simple …
14
votes
10answers
611 views
C# Time of finally execution
Take this code:
using System;
namespace OddThrow
{
class Program
{
static void Main(string[] args)
{
try
{
throw n …
0
votes
10answers
2k views
In C# will the Finally block be executed in a try, catch, finally if an unhandled exception is thrown ? [closed]
Another interview question which was expecting a true / false answer and I wasn't too sure.
Duplicate
http://stackoverflow.com/questions/582095/in-net-what-if-something-fails-in …
0
votes
6answers
118 views
problem in try statement
Hello,
This is the code I use to setup my TCP server
internal void Initialize(int port,string IP)
{
IPEndPoint _Point = new IPEndPoint(IPAddress.Parse(IP), port); …
4
votes
7answers
475 views
Why is my finally block not working in C#?
I've been helping a colleague debug some strange behavior in their code. The following sample illustrates this:
static void Main(string[] args)
{
string answer = Sample();
…
3
votes
15answers
887 views
Is there a favored idiom for mimicing Java’s try/finally in C++ ?
Been doing Java for number of years so haven't been tracking C++. Has finally clause been added to C++ exception handling in the language definition?
Is there a favored idiom that …
20
votes
5answers
1k views
Why doesn’t C# have support for first pass exception filtering?
Note: this is not a duplicate of Jeff's question.
That question asked "Is an equivalent?" I know there isn't, and I want to know why!
The reason I ask is that I've only just beco …
2
votes
5answers
711 views
Are there cases where a “finally” construct would be useful in C++?
Bjarne Stroustrup writes in his C++ Style and Technique FAQ, emphasis mine:
Because C++ supports an alternative that is almost always better: The "resource acquisition is initi …
3
votes
4answers
365 views
return eats exception
I found the following behavior at least wierd:
def errors():
try:
ErrorErrorError
finally:
return 10
print errors()
# prints: 10
# It should raise: NameEr …
3
votes
9answers
1k views
In Java, is the “finally” block guaranteed to be called (in the main method)?
I'm a Java rookie and I was wondering, if I have the following typical Java code
public class MyApp {
public static void main(String[] args) {
try {
// do stuff
} …
7
votes
4answers
2k views
Does C++ support ‘finally’ blocks? (And what’s this ‘RAII’ I keep hearing about?)
Does C++ support 'finally' blocks?
What is the RAII idiom?
What is the difference between C++'s RAII idiom and C#'s 'using' statement?
