20
votes
26answers
3k views
Why aren’t variables declared in “try” in scope in “catch” or “finally”?
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 …
17
votes
7answers
2k views
Python variable scope question
Hi,
I've been programming for many years, and recently started learning Python. The following code works as expected in both python 2.5 and 3.0 (on OS X if that matters):
a, b, c = (1, 2, 3)
…
16
votes
6answers
456 views
How can I localize Perl variables in a different stack frame?
I have some auto-generated code which effectively writes out the following in a bunch of different places in some code:
no warnings 'uninitialized';
local %ENV = %ENV;
local $/ = $/;
local @INC = …
15
votes
13answers
1k views
Do you use curly braces for additional scoping?
I mean other than using it when required for functions, classes, if, while, switch, try-catch.
I didn't know that it could be done like this until I saw this SO question.
In the above link, Eli …
14
votes
9answers
1k views
What do curly braces by themselves mean in java?
for example, I have the following code (generated, not written)
if(node.getId() != null)
{
node.getId().apply(this);
}
{
List<PExp> copy = new …
11
votes
10answers
849 views
How to tell a project manager “NO” to scope creep
While project managers may each have their own personality and management style, it seems that many of them have a pernicious love of sneaking in "scope creep" when they can (whether anyone is …
11
votes
16answers
1k views
PHP: $_SESSION - What are the pros and cons of storing temporarily used data in the $_SESSION variable
One thing I've started doing more often recently is retrieving some data at the beginning of a task and storing it in a $_SESSION['myDataForTheTask'].
Now it seems very convenient to do so but I …
9
votes
2answers
105 views
C Puzzle - play with types
Please check the below program.
#include <stdio.h>
struct st
{
int a ;
}
fn ()
{
struct st obj ;
obj.a = 10 ;
return obj ;
}
int main()
{
struct st obj = fn() ;
printf ("%d", obj.a) …
8
votes
18answers
2k views
Does procedural programming have any advantages over OOP?
[Edit:] Earlier I asked this as a perhaps poorly-framed question about when to use OOP versus when to use procedural programming - some responses implied I was asking for help understanding OOP. On …
8
votes
5answers
346 views
How do I create a list of Python lambdas (in a list comprehension/for loop)?
I want to create a list of lambda objects from a list of constants in Python; for instance:
listOfNumbers = [1,2,3,4,5]
square = lambda x: x * x
listOfLambdas = [lambda: square(i) for i in …
8
votes
5answers
2k views
Short Description of Python Scoping Rules
What exactly are the Python scoping rules?
If I have come code:
code1
class Foo:
code2
def spam.....
code3
for code4..:
code5
x()
Where is x found? Some possible …
7
votes
6answers
202 views
Scoping rules when inheriting - C++
I was reading the C++0x FAQ by Stroustrup and got stuck with this code. Consider the following code
struct A
{
void f(double)
{
std::cout << "in double" << std::endl;
}
…
7
votes
5answers
714 views
Dynamic Scoping - Why?
I've learned that static scoping is the only sane way to do things, and that dynamic scoping is the tool of the devil, and results only from poor implementations of interpreters/compilers.
Then I …
7
votes
4answers
836 views
Python scope
Hello, I am trying to figure out this:
c = 1
def f(n):
print c + n
def g(n):
c = c + n
f(1) => 2
g(1) => UnboundLocalError: local variable 'c' referenced before assignment
Thanks!
6
votes
5answers
180 views
Difference between ‘using’ and scoping?
What is the difference between the following two snippets of code:
using (Object o = new Object())
{
// Do something
}
and
{
Object o = new Object();
// Do something
}
I have started …
