Scope is an enclosing context where values and expressions are associated. Use this tag for questions about different types of scope as well for questions where scope may be unclear.

learn more… | top users | synonyms

112
votes
9answers
3k views

C# variable declared in for cycle is local variable?

I have been using C# for quite a long time but never realised following: public static void Main() { for (int i = 0; i < 5; i++) { } int i = 4; //cannot declare as 'i' is ...
50
votes
27answers
10k 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 ...
37
votes
7answers
9k views

Python variable scope question

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) print(a, b, ...
32
votes
3answers
10k views

Javascript: how to set “this” variable easily?

I have a pretty good understanding of Javascript, except that I can't figure out a nice way to set the "this" variable. Consider: var myFunction = function(){ alert(this.foo_variable); } var ...
29
votes
9answers
1k views

Why is my HelloWorld function not declared in this scope?

#include <iostream> using namespace std; int main() { HelloWorld(); return 0; } void HelloWorld() { cout << "Hello, World" << endl; } I am getting the following ...
24
votes
7answers
19k views

JavaScript Callback Scope

I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function. function foo(id) { this.dom = document.getElementById(id); this.bar = 5; ...
23
votes
3answers
7k views

Overriding a Rails default_scope

If I have an ActiveRecord::Base model with a default-scope: class Foo < ActiveRecord::Base default_scope :conditions => ["bar = ?",bar] end Is there any way to do a Foo.find without using ...
22
votes
5answers
9k 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 ...
21
votes
8answers
940 views

How to live with Emacs Lisp dynamic scoping?

I've learned Clojure previously and really like the language. I also love Emacs and have hacked some simple stuff with Emacs Lisp. There is one thing which prevents me mentally from doing anything ...
21
votes
6answers
713 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 = ...
20
votes
21answers
7k 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 ...
19
votes
10answers
5k 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 ...
18
votes
13answers
2k views

Do you use curly braces for additional scoping? [closed]

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 ...
17
votes
4answers
289 views

JavaScript catch parameter already defined

I'm trying to understand why I'm getting the following error, not how to work around it. Passing the following code to JSLint or JSHint yields the error 'err' is already defined. /*jslint white: ...
17
votes
4answers
4k views

Python scope

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!
15
votes
10answers
2k views

Why enclose blocks of C code in curly braces?

I am looking at some C code, and have noticed it is full of these curly braces surrounding blocks of code without any sort of control structure. Take a look-see: //do some stuff . . . ...
15
votes
4answers
8k views

Private inner classes in C# - why aren't they used more often?

I am relatively new to C# and each time I begin to work on a C# project (I only worked on nearly mature projects in C#) I wonder why there are no inner classes? Maybe I don't understand their goal. ...
15
votes
16answers
3k 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 ...
14
votes
7answers
2k views

javascript: recursive anonymous function?

Lets say I have a basic recursive function: function recur(data) { data = data+1; var nothing = function() { recur(data); } nothing(); } How could I do this if I have an ...
14
votes
2answers
5k views

PHP: Get all variables defined in current scope/symbol table

Is there a function and/or object and/or extension in PHP that will let you view all the variables defined in the current scope? Something like var_export($GLOBALS) but only showing variables in ...
13
votes
5answers
648 views

What is the default scope of foreach loop in Perl?

In Perl, does using 'my' within a foreach loop have any effect? It seems that the index variable is always local whether or not 'my' is used. So can you drop the 'my' within the foreach loop and ...
12
votes
4answers
175 views

Java static imports

Just by experiment I discovered that Java non static methods overrides all same named methods in scope even at static context. Even without allowing parameter overloading. Like import ...
12
votes
9answers
243 views

Examples of the perils of globals in R and Stata

In recent conversations with fellow students, I have been advocating for avoiding globals except to store constants. This is a sort of typical applied statistics-type program where everyone writes ...
12
votes
4answers
442 views

How do I generate memoized recursive functions in Clojure?

I'm trying to write a function that returns a memoized recursive function in Clojure, but I'm having trouble making the recursive function see its own memoized bindings. Is this because there is no ...
12
votes
10answers
627 views

how can python function access its own attributes?

is it possible to access the python function object attributes from within the function scope? e.g. let's have def f(): return SOMETHING f._x = "foo" f() # -> "foo" now, what ...
12
votes
4answers
3k views

Declaring an enum within a class

In the following code snippet, the Color enum is declared within the Car class in order to limit the scope of the enum and to try not to "pollute" the global namespace. class Car { public: enum ...
12
votes
2answers
4k views

VB.Net Properties - Public Get, Private Set

I figured I would ask... but is there a way to have the Get part of a property available as public, but keep the set as private? Otherwise I am thinking I need two properties or a property and a ...
12
votes
3answers
9k views

Getting “global name 'foo' is not defined” with Python's timeit

I'm trying to find out how much time it takes to execute a Python statement, so I looked online and found that the standard library provides a module called timeit that purports to do exactly that: ...
12
votes
7answers
3k 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 ...
11
votes
6answers
557 views

Question on C# Variable Scope vs. Other Languages

First of all, let me say that I've never used C# before, and I don't know about it much. I was studying for my "Programming Languages" exam with Sebesta's "Concepts of Programming Languages 9th ed" ...
11
votes
3answers
196 views

In Javascript, when is a new scope created? (with a new function and in a “with” statement) Are these the only 2 situations?

In Javascript, when is a new scope created? The 2 situations I know of are: with a new function in a "with" statement as a note, any new block (in if-then-else, loops, or just beginning a block ...
11
votes
3answers
4k views

Rails: Why is with_exclusive_scope protected? Any good practice on how to use it?

Given a model with *default_scope* to filter all outdated entries: # == Schema Information # # id :integer(4) not null, primary key # user_id :integer(4) not null, primary ...
11
votes
10answers
1k 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 ...
10
votes
4answers
248 views

In Haskell, when do we use in with let?

In the following code, the last phrase i can put a "in" in front. Will it change anything? Another question: If i decide to put "in" in front of the last phrase, do i need to indent it? I tried ...
10
votes
3answers
101 views

Why does evaluating an expression in system.time() make variables available in global environment?

Can somebody please explain what happens when an expression is evaluated in system.time? In particular, why are any variables that are declared in the expr argument visible in the global environment? ...
10
votes
6answers
498 views

Is it a design flaw that Perl subs aren't lexically scoped?

{ sub a { print 1; } } a; A bug,is it? a should not be available from outside. Does it work in Perl 6*? * Sorry I don't have installed it yet.
10
votes
6answers
274 views

Is window really global in Javascript?

Take this piece of Javascript in a browser: <script> console.log(window.someThing); var x = 12; function foo() { window.otherThing = x; } </script> Inside foo we can access ...
10
votes
3answers
484 views

$_ variable used in function from a module is empty (PowerShell)

One question for you is here ;) I have this function: function Set-DbFile { param( [Parameter(ValueFromPipeline=$true)] [System.IO.FileInfo[]] $InputObject, ...
10
votes
9answers
425 views

variable scope in statement blocks

for (int i = 0; i < 10; i++) { Foo(); } int i = 10; // error, 'i' already exists ---------------------------------------- for (int i = 0; i < 10; i++) { Foo(); } i = 10; // error, ...
10
votes
4answers
658 views

C comma operator

Why is the expression specified inside a comma operator (such as the example below) not considered a constant expression? For example, int a = (10,20) ; when given in global scope yields an error ...
10
votes
4answers
382 views

Does parenthetical notation for self-invoked functions serve a purpose in Javascript?

I get confused when I see examples of self invoked anonymous functions in Javascript such as this: (function () { return val;}) (); Is there a difference between this syntax and the following: ...
9
votes
2answers
298 views

How to access a variable which is neither global nor local?

Look at this piece of code int x = 1; int main(int argc, char* argv[]) { int x = 2; { int x = 3; cout << x << endl; cout << ::x; } getch(); return 0; } When i call x ...
9
votes
5answers
271 views

What's the scope of inline friend functions?

After searching aroung SO, one question taught me that the lexical scope of an inline friend function is the class it's defined in, meaning it can access e.g. the typedefs in the class without ...
9
votes
1answer
243 views
+50

Defining Setter/Getter for an unparented local variable: impossible?

There's a few previous questions on StackOverflow questioning how one goes about accessing local variables via the scope chain, like if you wanted to reference a local variables using bracket notation ...
9
votes
4answers
237 views

C++ namespace alias in entire class scope

I expected to be able to use a namespace alias in a class declaration but get a compiler syntax error. struct MyClass { namespace abc = a_big_namespace; void fn() { abc::test(); } ...
9
votes
1answer
367 views

Node.js and client sharing the same scripts

One of the theoretical benefits from working with Node.js is the possibility to share the same scripts between clients and the server. That would make it possible to degrade the same functionality to ...
9
votes
12answers
1k views

Difference between :: and -> in PHP

I always see people in serious projects use :: everywhere, and -> only occasionally in local environment. I only use -> myself and never end up in situations when I need a static value outside of a ...
9
votes
2answers
9k views

default_scope in rails 3

I know named_scope has been changed to scope in rails 3. How do I perform default_scope in rails 3, I've had a good google but found nothing for defaults scopes.
9
votes
2answers
247 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) ...
9
votes
7answers
754 views

JavaScript scope and closure

I'm trying to wrap my head around closures (there's a joke in there somewhere) and I ran across this: (function () { /* do cool stuff */ })(); How does this work? What's the purpose of putting the ...

1 2 3 4 5 38