Why aren't variables declared in "try" in scope in "catch" or "finally"? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T00:08:47Z http://stackoverflow.com/feeds/question/94977 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally 20 Why aren't variables declared in "try" in scope in "catch" or "finally"? Jon Schneider 2008-09-18T17:56:23Z 2009-07-05T17:49:06Z <p>In C# and in Java (and possibly other languages as well), variables declared in a "try" block are not in scope in the corresponding "catch" or "finally" blocks. For example, the following code does not compile:</p> <pre><code>try { String s = "test"; // (more code...) } catch { Console.Out.WriteLine(s); //Java fans: think "System.out.println" here instead } </code></pre> <p>In this code, a compile-time error occurs on the reference to s in the catch block, because s is only in scope in the try block. (In Java, the compile error is "s cannot be resolved"; in C#, it's "The name 's' does not exist in the current context".)</p> <p>The general solution to this issue seems to be to instead declare variables just before the try block, instead of within the try block:</p> <pre><code>String s; try { s = "test"; // (more code...) } catch { Console.Out.WriteLine(s); //Java fans: think "System.out.println" here instead } </code></pre> <p>However, at least to me, (1) this feels like a clunky solution, and (2) it results in the variables having a larger scope than the programmer intended (the entire remainder of the method, instead of only in the context of the try-catch-finally).</p> <p>My question is, what were/are the rationale(s) behind this language design decision (in Java, in C#, and/or in any other applicable languages)? </p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/94998#94998 38 Answer by Burkhard for Why aren't variables declared in "try" in scope in "catch" or "finally"? Burkhard 2008-09-18T17:58:40Z 2009-07-05T17:49:06Z <p>How could you be sure, that you reached the declaration part in your catch block? What if the instantiation throws the exception?</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95000#95000 0 Answer by jpbarto for Why aren't variables declared in "try" in scope in "catch" or "finally"? jpbarto 2008-09-18T17:58:42Z 2008-09-18T17:58:42Z <p>My thought would be that because something in the try block triggered the exception its namespace contents cannot be trusted - ie referencing the String 's' in the catch block could cause the throw of yet another exception.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95003#95003 0 Answer by Kevin for Why aren't variables declared in "try" in scope in "catch" or "finally"? Kevin 2008-09-18T17:58:58Z 2008-09-18T17:58:58Z <p>Well if it doesn't throw a compile error, and you could declare it for the rest of the method, then there would be no way to only declare it only within try scope. It's forcing you to be explicit as to where the variable is supposed to exists and doesn't make assumptions. </p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95006#95006 7 Answer by ravenspoint for Why aren't variables declared in "try" in scope in "catch" or "finally"? ravenspoint 2008-09-18T17:59:19Z 2008-09-18T17:59:19Z <p>In C++ at any rate, the scope of an automatic variable is limited by the curly braces that surround it. Why would anyone expect this to be different by plunking down a try keyword outside the curly braces?</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95015#95015 2 Answer by EndangeredMassa for Why aren't variables declared in "try" in scope in "catch" or "finally"? EndangeredMassa 2008-09-18T18:00:22Z 2008-09-18T18:00:22Z <p>You solution is exactly what you should do. You can't be sure that your declaration was even reached in the try block, which would result in another exception in the catch block.</p> <p>It simply must work as separate scopes.</p> <pre><code>try dim i as integer = 10 / 0 ''// Throw an exception dim s as string = "hi" catch (e) console.writeln(s) ''// Would throw another exception, if this was allowed to compile end try </code></pre> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95024#95024 0 Answer by SaaS Developer for Why aren't variables declared in "try" in scope in "catch" or "finally"? SaaS Developer 2008-09-18T18:01:18Z 2008-09-18T18:01:18Z <p>If the assignment operation fails your catch statement will have a null reference back to the unassigned variable.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95030#95030 59 Answer by John Christensen for Why aren't variables declared in "try" in scope in "catch" or "finally"? John Christensen 2008-09-18T18:01:57Z 2008-09-18T18:01:57Z <p>Two things:</p> <ol> <li>The scoping of the variables is done by the block they are declared in - in this case denoted by the presence of { }. Its not that there is a try scoping, just block scoping.</li> </ol> <p>2 (and more importantly). You can't know where in the try block the exception was thrown. It may have been before your variable was declared. Therefore it is impossible to say what variables will be available for the catch/finally clause. Consider the following case, where scoping is as you suggested:</p> <pre><code>try { throw new ArgumentException("Pretend that this is an operation that throws an exception"); string s = "blah"; } catch (e as ArgumentException) { Console.Out.WriteLine(s); } </code></pre> <p>This clearly is a problem - when you reach the exception handler, s will not have been declared. Given that catches are meant to handle exceptional circumstances and finallys <em>must</em> execute, being safe and declaring this a problem at compile time is far better than at runtime.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95034#95034 2 Answer by jW for Why aren't variables declared in "try" in scope in "catch" or "finally"? jW 2008-09-18T18:02:04Z 2008-09-18T18:02:04Z <p>The variables are block level and restricted to that Try or Catch block. Similar to defining a variable in an if statement. Think of this situation.</p> <pre><code>try { fileOpen("no real file Name"); String s = "GO TROJANS"; } catch (Exception) { print(s); } </code></pre> <p>The String would never be declared, so it can't be depended upon. </p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95040#95040 1 Answer by Steve Jessop for Why aren't variables declared in "try" in scope in "catch" or "finally"? Steve Jessop 2008-09-18T18:02:53Z 2008-09-18T18:02:53Z <p>In the specific example you've given, initialising s can't throw an exception. So you'd think that maybe its scope could be extended.</p> <p>But in general, initialiser expressions can throw exceptions. It wouldn't make sense for a variable whose initialiser threw an exception (or which was declared after another variable where that happened) to be in scope for catch/finally.</p> <p>Also, code readability would suffer. The rule in C (and languages which follow it, including C++, Java and C#) is simple: variable scopes follow blocks.</p> <p>If you want a variable to be in scope for try/catch/finally but nowhere else, then wrap the whole thing in another set of braces (a bare block) and declare the variable before the try.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95047#95047 9 Answer by Ferruccio for Why aren't variables declared in "try" in scope in "catch" or "finally"? Ferruccio 2008-09-18T18:03:22Z 2008-12-09T01:54:06Z <p>Traditionally, in C-style languages, what happens inside the curly braces stays inside the curly braces. I think that having the lifetime of a variable stretch across scopes like that would be unintuitive to most programmers. You can achieve what you want by enclosing the try/catch/finally blocks inside another level of braces. e.g.</p> <pre><code>... code ... { string s = "test"; try { // more code } catch(...) { Console.Out.WriteLine(s); } } </code></pre> <p>EDIT: I guess every rule <em>does</em> have an exception. The following is valid C++:</p> <pre><code>int f() { return 0; } void main() { int y = 0; if (int x = f()) { cout &lt;&lt; x; } else { cout &lt;&lt; x; } } </code></pre> <p>The scope of x is the conditional, the then clause and the else clause.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95054#95054 2 Answer by Daren Thomas for Why aren't variables declared in "try" in scope in "catch" or "finally"? Daren Thomas 2008-09-18T18:03:58Z 2008-09-18T18:03:58Z <p>Like ravenspoint pointed out, everyone expects variables to be local to the block they are defined in. <code>try</code> introduces a block and so does <code>catch</code>.</p> <p>If you want variables local to both <code>try</code> and <code>catch</code>, try enclosing both in a block:</p> <pre><code>// here is some code { string s; try { throw new Exception(":(") } catch (Exception e) { Debug.WriteLine(s); } } </code></pre> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95057#95057 1 Answer by zxcv for Why aren't variables declared in "try" in scope in "catch" or "finally"? zxcv 2008-09-18T18:04:06Z 2008-09-18T18:04:06Z <p>Part of the reason they are not in the same scope is because at any point of the try block, you can have thrown the exception. If they were in the same scope, its a disaster in waiting, because depending on where the exception was thrown, it could be even more ambiguous.</p> <p>At least when its declared outside of the try block, you know for sure what the variable at minimum could be when an exception is thrown; The value of the variable before the try block.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95068#95068 3 Answer by François for Why aren't variables declared in "try" in scope in "catch" or "finally"? François 2008-09-18T18:05:57Z 2008-09-18T18:05:57Z <p>Because the try block and the catch block are 2 different blocks. </p> <p>In the following code, would you expect s defined in block A be visible in block B? </p> <pre><code>{ // block A string s = "dude"; } { // block B Console.Out.WriteLine(s); // or printf or whatever } </code></pre> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95078#95078 3 Answer by dgvid for Why aren't variables declared in "try" in scope in "catch" or "finally"? dgvid 2008-09-18T18:06:59Z 2008-09-18T18:06:59Z <p>The simple answer is that C and most of the languages that have inherited its syntax are block scoped. That means that if a variable is defined in one block, i.e., inside { }, that is its scope.</p> <p>The exception, by the way, is JavaScript, which has a similar syntax, but is function scoped. In JavaScript, a variable declared in a try block is in scope in the catch block, and everywhere else in its containing function.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95133#95133 0 Answer by Guvante for Why aren't variables declared in "try" in scope in "catch" or "finally"? Guvante 2008-09-18T18:11:52Z 2008-09-18T18:11:52Z <pre><code>While in your example it is weird that it does not work, take this similar one: try { //Code 1 String s = "1|2"; //Code 2 } catch { Console.WriteLine(s.Split('|')[1]); } This would cause the catch to throw a null reference exception if Code 1 broke. Now while the semantics of try/catch are pretty well understood, this would be an annoying corner case, since s is defined with an initial value, so it should in theory never be null, but under shared semantics, it would be. Again this could in theory be fixed by only allowing separated definitions (String s; s = "1|2";), or some other set of conditions, but it is generally easier to just say no. Additionally, it allows the semantics of scope to be defined globally without exception, specifically, locals last as long as the {} they are defined in, in all cases. Minor point, but a point. Finally, in order to do what you want, you can add a set of brackets around the try catch. Gives you the scope you want, although it does come at the cost of a little readability, but not too much. { String s; try { s = "test"; //More code } catch { Console.WriteLine(s); } } </code></pre> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95136#95136 3 Answer by Timothy Carter for Why aren't variables declared in "try" in scope in "catch" or "finally"? Timothy Carter 2008-09-18T18:12:04Z 2008-09-18T18:12:04Z <p>@burkhard has the question as to why answered properly, but as a note I wanted to add, while your recommended solution example is good 99.9999+% of time, it is not good practice, it is far safer to either check for null before using something instantiate within the try block, or initialize the variable to something instead of just declaring it before the try block. For example:</p> <pre><code>string s = String.Empty; try { //do work } catch { //safely access s Console.WriteLine(s); } </code></pre> <p>Or:</p> <pre><code>string s; try { //do work } catch { if (!String.IsNullOrEmpty(s)) { //safely access s Console.WriteLine(s); } } </code></pre> <p>This should provide scalability in the workaround, so that even when what you're doing in the try block is more complex than assigning a string, you should be able to safely access the data from your catch block.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95144#95144 1 Answer by Wedge for Why aren't variables declared in "try" in scope in "catch" or "finally"? Wedge 2008-09-18T18:12:41Z 2008-09-18T18:12:41Z <p>When you declare a local variable it is placed on the stack (for some types the entire value of the object will be on the stack, for other types only a reference will be on the stack). When there is an exception inside a try block, the local variables within the block are freed, which means the stack is "unwound" back to the state it was at at the beginning of the try block. This is by design. It's how the try / catch is able to back out of all of the function calls within the block and puts your system back into a functional state. Without this mechanism you could never be sure of the state of anything when an exception occurs.</p> <p>Having your error handling code rely on externally declared variables which have their values changed inside the try block seems like bad design to me. What you are doing is essentially leaking resources intentionally in order to gain information (in this particular case it's not so bad because you are only leaking information, but imagine if it were some other resource? you're just making life harder on yourself in the future). I would suggest breaking up your try blocks into smaller chunks if you require more granularity in error handling.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95180#95180 0 Answer by tamberg for Why aren't variables declared in "try" in scope in "catch" or "finally"? tamberg 2008-09-18T18:14:59Z 2008-09-18T18:20:17Z <p>The <a href="http://www.ecma-international.org/publications/standards/Ecma-334.htm" rel="nofollow">C# Spec</a> (15.2) states "The scope of a local variable or constant declared in a block ist the block."</p> <p>(in your first example the try block is the block where "s" is declared)</p> <p>Regards, tamberg</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95230#95230 1 Answer by Jesper Blad Jensen aka. Deldy for Why aren't variables declared in "try" in scope in "catch" or "finally"? Jesper Blad Jensen aka. Deldy 2008-09-18T18:19:20Z 2008-09-18T18:19:20Z <p>When you have a try catch, you should at the most part know that errors that it might throw. Theese Exception classes normaly tell everything you need about the exception. If not, you should make you're own exception classes and pass that information along. That way, you will never need to get the variables from inside the try block, because the Exception is self explainatory. So if you need to do this alot, think about you're design, and try to think if there is some other way, that you can either predict exceptions comming, or use the information comming from the exceptions, and then maybe rethrow your own exception with more information.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95270#95270 1 Answer by Charles Graham for Why aren't variables declared in "try" in scope in "catch" or "finally"? Charles Graham 2008-09-18T18:22:55Z 2008-09-18T18:22:55Z <p>As has been pointed out by other users, the curly braces define scope in pretty much every C style language that I know of.</p> <p>If it's a simple variable, then why do you care how long it will be in scope? It's not that big a deal.</p> <p>in C#, if it is a complex variable, you will want to implement IDisposable. You can then either use try/catch/finally and call obj.Dispose() in the finally block. Or you can use the using keyword, which will automatically call the Dispose at the end of the code section.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/95451#95451 2 Answer by ykaganovich for Why aren't variables declared in "try" in scope in "catch" or "finally"? ykaganovich 2008-09-18T18:37:26Z 2008-09-18T21:44:47Z <p>The answer, as everyone has pointed out, is pretty much "that's how blocks are defined".</p> <p>There are some proposals to make the code prettier. See <a href="http://docs.google.com/View?docid=dffxznxr_1nmsqkz&amp;pli=1" rel="nofollow">ARM</a></p> <pre><code> try (FileReader in = makeReader(), FileWriter out = makeWriter()) { // code using in and out } catch(IOException e) { // ... } </code></pre> <p><a href="http://www.javac.info/" rel="nofollow">Closures</a> are supposed to address this as well.</p> <pre><code>with(FileReader in : makeReader()) with(FileWriter out : makeWriter()) { // code using in and out } </code></pre> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/97346#97346 3 Answer by John Rudy for Why aren't variables declared in "try" in scope in "catch" or "finally"? John Rudy 2008-09-18T21:48:08Z 2008-09-18T21:48:08Z <p>Everyone else has brought up the basics -- what happens in a block stays in a block. But in the case of .NET, it may be helpful to examine what the compiler thinks is happening. Take, for example, the following try/catch code (note that the StreamReader is declared, correctly, outside the blocks):</p> <pre><code>static void TryCatchFinally() { StreamReader sr = null; try { sr = new StreamReader(path); Console.WriteLine(sr.ReadToEnd()); } catch (Exception ex) { Console.WriteLine(ex.ToString()); } finally { if (sr != null) { sr.Close(); } } } </code></pre> <p>This will compile out to something similar to the following in MSIL:</p> <pre><code>.method private hidebysig static void TryCatchFinallyDispose() cil managed { // Code size 53 (0x35) .maxstack 2 .locals init ([0] class [mscorlib]System.IO.StreamReader sr, [1] class [mscorlib]System.Exception ex) IL_0000: ldnull IL_0001: stloc.0 .try { .try { IL_0002: ldsfld string UsingTest.Class1::path IL_0007: newobj instance void [mscorlib]System.IO.StreamReader::.ctor(string) IL_000c: stloc.0 IL_000d: ldloc.0 IL_000e: callvirt instance string [mscorlib]System.IO.TextReader::ReadToEnd() IL_0013: call void [mscorlib]System.Console::WriteLine(string) IL_0018: leave.s IL_0028 } // end .try catch [mscorlib]System.Exception { IL_001a: stloc.1 IL_001b: ldloc.1 IL_001c: callvirt instance string [mscorlib]System.Exception::ToString() IL_0021: call void [mscorlib]System.Console::WriteLine(string) IL_0026: leave.s IL_0028 } // end handler IL_0028: leave.s IL_0034 } // end .try finally { IL_002a: ldloc.0 IL_002b: brfalse.s IL_0033 IL_002d: ldloc.0 IL_002e: callvirt instance void [mscorlib]System.IDisposable::Dispose() IL_0033: endfinally } // end handler IL_0034: ret } // end of method Class1::TryCatchFinallyDispose </code></pre> <p>What do we see? MSIL respects the blocks -- they're intrinsically part of the underlying code generated when you compile your C#. The scope isn't just hard-set in the C# spec, it's in the CLR and CLS spec as well. </p> <p>The scope protects you, but you do occasionally have to work around it. Over time, you get used to it, and it begins to feel natural. Like everyone else said, what happens in a block stays in that block. You want to share something? You have to go outside the blocks ... </p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/98148#98148 0 Answer by Robert Paulson for Why aren't variables declared in "try" in scope in "catch" or "finally"? Robert Paulson 2008-09-18T23:56:43Z 2008-09-18T23:56:43Z <p>If we ignore the scoping-block issue for a moment, the complier would have to work a lot harder in a situation that's not well defined. While this is not impossible, the scoping error also forces you, the author of the code, to realise the implication of the code you write (that the string s may be null in the catch block). If your code was legal, in the case of an OutOfMemory exception, s isn't even guaranteed to be allocated a memory slot: </p> <pre><code>// won't compile! try { VeryLargeArray v = new VeryLargeArray(TOO_BIG_CONSTANT); // throws OutOfMemoryException string s = "Help"; } catch { Console.WriteLine(s); // whoops! } </code></pre> <p>The CLR (and therefore compiler) also force you to initialize variables before they are used. In the catch block presented it can't guarantee this. </p> <p>So we end up with the compiler having to do a lot of work, which in practice doesn't provide much benefit and would probably confuse people and lead them to ask why try/catch works differently. </p> <p>In addition to consistency, by not allowing anything fancy and adhering to the already established scoping semantics used throughout the language, the compiler and CLR are able to provide a greater guarantee of the state of a variable inside a catch block. That it exists and has been initialized.</p> <p>Note that the language designers have done a good job with other constructs like <em>using</em> and <em>lock</em> where the problem and scope is well defined, which allows you to write clearer code.</p> <p>e.g. the <em>using</em> keyword with <em>IDisposable</em> objects in:</p> <pre><code>using(Writer writer = new Writer()) { writer.Write("Hello"); } </code></pre> <p>is equivalent to:</p> <pre><code>Writer writer = new Writer(); try { writer.Write("Hello"); } finally { if( writer != null) { ((IDisposable)writer).Dispose(); } } </code></pre> <p>If your try/catch/finally is hard to understand, try refactoring or introducing another layer of indirection with an intermediate class that encapsulates the semantics of what you are trying to accomplish. Without seeing real code, it's hard to be more specific.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/98160#98160 -1 Answer by Chris for Why aren't variables declared in "try" in scope in "catch" or "finally"? Chris 2008-09-18T23:58:27Z 2008-09-19T00:08:07Z <p>C# 3.0:</p> <pre><code>string html = new Func&lt;string&gt;(() =&gt; { string webpage; try { using(WebClient downloader = new WebClient()) { webpage = downloader.DownloadString(url); } } catch(WebException) { Console.WriteLine("Download failed."); } return webpage; })(); </code></pre> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/99978#99978 1 Answer by adal for Why aren't variables declared in "try" in scope in "catch" or "finally"? adal 2008-09-19T06:00:20Z 2008-09-19T06:00:20Z <p>In Python they are visible in the catch/finally blocks if the line declaring them didn't throw.</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally/100257#100257 2 Answer by hurst for Why aren't variables declared in "try" in scope in "catch" or "finally"? hurst 2008-09-19T07:31:29Z 2008-09-19T07:31:29Z <p>According to the section titled "How to Throw and Catch Exceptions" in Lesson 2 of <strong>MCTS Self-Paced Training Kit (Exam 70-536): Microsoft® .NET Framework 2.0—Application Development Foundation</strong>, the reason is that the exception may have occurred before variable declarations in the try block (as others have noted already).</p> <p>Quote from page 25:</p> <p>"Notice that the StreamReader declaration was moved outside the Try block in the preceding example. This is necessary because the Finally block cannot access variables that are declared within the Try block. <strong><em>This makes sense because depending on where an exception occurred, variable declarations within the Try block might not yet have been executed</em></strong>."</p>