Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
3answers
2k views

C# Variable Scoping

if(true) { string var = "VAR"; } string var = "New VAR!"; This will result in: Error 1 A local variable named 'var' cannot be declared in this scope because it would give a different ...
31
votes
7answers
14k views

what is the difference between my and our in Perl?

I know what my is in Perl. It defines a variable that exists only in the scope of the block in which it is defined. What does our do? How does it differ from my?
25
votes
8answers
668 views

How can a variable be used when its definition is bypassed?

In my mind, always, definition means storage allocation. In the following code, int i allocates a 4-byte (typically) storage on program stack and bind it to i, and i = 3 assigns 3 to that storage. ...
21
votes
8answers
945 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 ...
15
votes
11answers
385 views

JavaScript pass scope to another function

Is it possible to somehow pass the scope of a function to another? For example, function a(){ var x = 5; var obj = {..}; b(<my-scope>); } function b(){ //access x or obj.... } I ...
15
votes
1answer
2k views

Ruby accessing outer variables in nested function

I'm sure there's a simple answer for this; I just can't seem to find it. I made a nested function in Ruby, and I was having trouble accessing variables from the outer function inside the inner ...
14
votes
6answers
2k views

JavaScript: How is “function onload() {}” different from “onload = function() {}”?

In the answers to this question, we read that function f() {} defines the name locally, while [var] f = function() {} defines it globally. That makes perfect sense to me, but there's some strange ...
13
votes
4answers
880 views

Python closure: Write to variable in parent scope

I have the following code inside a function: stored_blocks = {} def replace_blocks(m): block = m.group(0) block_hash = sha1(block) stored_blocks[block_hash] = block return '{{{%s}}}' ...
13
votes
1answer
2k views

globals and locals in python exec()

I'm trying to run a piece of python code using exec. my_code = """ class A(object): pass print 'locals: %s' % locals() print 'A: %s' % A class B(object): a_ref = A """ global_env = {} ...
12
votes
5answers
214 views

How do JavaScript variables work?

I know that JavaScript vars point to a value: var foo = true; //... later foo = false; So in that example I've changed foo pointing to true -> foo pointing to false, but if I do: for (var i=0; ...
12
votes
7answers
1k views

What's the scope of a Python variable declared in an if statement?

I'm new to Python, so this is probably a simple scoping question. The following code in a Python file (module) is confusing me slightly: if __name__ == '__main__': x = 1 print x In other ...
11
votes
4answers
216 views

Object not found error with ddply inside a function

This has really challenged my ability to debug R code. I want to use ddply() to apply the same functions to different columns that are sequentially named; eg. a, b, c. To do this I intend to ...
11
votes
6answers
452 views

Is it wrong to use braces for variable scope purposes?

I sometimes use braces to isolate a block of code to avoid using by mistake a variable later. For example, when I put several SqlCommands in the same method, I frequently copy-paste blocks of code, ...
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" ...
10
votes
2answers
728 views

Child Scope & CS0136

The following code fails to compile stating "A local variable named 'st' cannot be declared in this scope because it would give a different meaning to 'st', which is already used in a 'child' scope ...
9
votes
6answers
159 views

Loop variable not getting collected

I have a loop variable that does not appear to be getting garbage collected (according to Red--Gate ANTS memory profiler) despite having gone out of scope. The code looks something like this: while ...
9
votes
4answers
892 views

Have Firebug Break when a global variable X is defined

We have a very large JavaScript application where after many months of coding there have inevitably sprung a couple scope slip ups where a variable is defined in the following fashion: function() { ...
8
votes
3answers
253 views

Why can't we define a variable inside an if statement?

Maybe this question has been answered before, but the word if occurs so often it's hard to find it. The example doesn't make sense (the expression is always true), but it illustrates my question. ...
8
votes
7answers
175 views

What is the best way to check and retrieve the first item of a collection?

I understand this is somewhat trivial but... What the best way to get the reference the first item of a collection if any exist? Assume the collection contains items of a reference-type. Code Sample ...
8
votes
5answers
759 views

Scoping in Python 'for' loops

I'm not asking about Python's scoping rules; I understand generally how scoping works in Python for loops. My question is why the design decisions were made in this way. For example (no pun intended): ...
8
votes
7answers
624 views

try block scope

I'm unhappy with the rule about variable scope in a try block not being shared with associated catch and finally blocks. Specifically it leads to code like the following: var v: VType = null try { ...
8
votes
4answers
385 views

Global JavaScript Variable Scope: Why doesn't this work?

So I'm playing around with JavaScript and came across what I think to be an oddity. Is anyone able to explain the following? (i've included the alerted values as comments) Why is the first alert(msg) ...
8
votes
2answers
1k views

Strange behavior with Powershell scriptblock variable scope and modules, any suggestions?

NOTE: I'm using PowerShell 2.0 on Windows Vista. I'm trying to add support for specifying build arguments to psake, but I've run into some strange PowerShell variable scoping behavior dealing ...
7
votes
5answers
193 views

Require an arbitrary PHP file without leaking variables into scope

Is it possible in PHP to require an arbitrary file without leaking any variables from the current scope into the required file's variable namespace or polluting the global variable scope? I'm wanting ...
7
votes
4answers
331 views

What's the difference between a global var and a window.variable in javascript?

I'm reading the backbone.js documents and seeing a lot of code that assigns attributes to the window object: window.something = "whatever"; what's the difference between calling this code, and just ...
7
votes
2answers
662 views

Vim: Highlight C++ variables using scope?

I would like to have C++ variables highlighted by scope. E.g. variables should have different coloring depending on file, class, global or local scope. Is it possible? UPDATE: External helpers (e.g. ...
7
votes
1answer
172 views

How should I avoid unintentionally capturing the local scope in function literals?

I'll ask this with a Scala example, but it may well be that this affects other languages which allow hybrid imperative and functional styles. Here's a short example (UPDATED, see below): def method: ...
7
votes
3answers
129 views

Need help with variable scope in Javascript

I have the following Javascript function that should return an array of groups that are in database. It uses $.getJSON() method to call get_groups.php which actually reads from the database. function ...
7
votes
3answers
268 views

C# scope question

Consider the following code sample: // line # { // 1 // 2 { // 3 double test = 0; // 4 } ...
7
votes
4answers
451 views

Limiting variable scope

I'm trying to write a function, which limits the scope of R variables. For example, source("LimitScope.R") y = 0 f = function(){ #Raises an error as y is a global variable x = y } I thought ...
7
votes
4answers
379 views

Is 'eval' the only way to interact with binding objects in Ruby?

I'm rather new to Ruby, and so far, figuring out how to use "binding" objects is one of the biggest pain points for me. If I'm reading the documentation correctly, they're almost entirely opaque. To ...
7
votes
4answers
556 views

Lifetime of a const string literal returned by a function

Consider this code: const char* someFun() { // ... some stuff return "Some text!!" } int main() { { // Block: A const char* retStr = someFun(); // use retStr } } My ...
7
votes
4answers
3k views

How to create module-wide variables in Python?

Is there a way to set up a global variable inside of a module? When I tried to do it the most obvious way as appears below, the Python interpreter said the variable __DBNAME__ did not exist. ... ...
6
votes
4answers
220 views

Static variables in class methods

Can someone please explain how static method variables work in C++... if I have the following class: class A { void foo() { static int i; i++; } } If I declare multiple instances ...
6
votes
4answers
245 views

Recommended way to manage global scope data and settings in PHP?

After a few years in PHP development, I saw and heard various ways for storing "global scope data" (globals, constants, ini/XML/YML files, database, singleton properties...). By "global scope data", ...
6
votes
6answers
247 views

Restrictions on local variable usage in C++?

I had a few questions in a technical interview that I thought I knew, but wanted to double-check (they said I passed it, but I was unsure about these): A variable declared inside a Class Method... ...
6
votes
3answers
323 views

Why does IE nuke window.ABC variables?

When running the following block of code, FF and Chrome output typeof(hiya) = string while IE7/8 output typeof(hiya) = undefined. <html> <body> <script ...
6
votes
5answers
347 views

Variable Scope in C++

If I had the following code: for(int myvar = 0; myvar < 10; myvar++); if(1) { int var2 = 16; } Then, afterwards I wrote the following: myvar = 0; var2 = 0; Would that be legal? My VC++6 ...
6
votes
3answers
200 views

Optimal declaration of variables with regards to scope

I ask this question mostly in regards to C programming, but insights on any language are welcome. When it comes to C, I know it only lets variable declarations occur at the very beginning of a block ...
6
votes
4answers
501 views

Python function local name binding from an outer scope

I need a way to "inject" names into a function from an outer code block, so they are accessible locally and they don't need to be specifically handled by the function's code (defined as function ...
6
votes
2answers
821 views

Variable scope difference between PHP and C: block scope is not exactly the same?

The following PHP code will output 3. function main() { if (1) { $i = 3; } echo $i; } main(); But the following C code will raise a compile error. void main() { if (1) { ...
6
votes
3answers
466 views

python variable scope

I'm teaching my self python and I was translating some sample code into this class Student(object): def __init__( self, name, a,b,c ): self.name = name self.a = a self.b = ...
6
votes
3answers
2k views

Redeclared javascript global variable overrides old value in IE

(creating a separate question after comments on this: http://stackoverflow.com/questions/2634410/javascript-redeclared-global-variable-overrides-old-value) I am creating a globally scoped variable ...
6
votes
4answers
335 views

JavaScript: Reference a functions local scope as an object

When I call a function, a local scope is erected for that call. Is there any way to directly reference that scope as an object? Just like window is a reference for the global scope object. Example: ...
6
votes
3answers
800 views

Scope of exception object in C++

What is the scope of the exception object in C++? does it go out of scope as soon as catch handler is executed? Also, if I create an unnamed exception object and throw it, then while catching that ...
6
votes
3answers
13k views

How can I increment a variable with value of another variable in JasperReports?

I need to make a grand total of the items I'm counting in a subReport. To do that, I think I need to add the value of that variable to another variable for each iteration, or "increment" it by that ...
6
votes
4answers
3k views

Question about Scope of Static Class Variables in Java

I have a static object defined in my logging class, along the lines of: class myLoggingClass { static java.util.Properties properties; ... ... } According to my reference book, ...
6
votes
4answers
2k views

Why does assigning to my global variables not work in Python?

I'm having terrible trouble trying to understand python scoping rules. With the following script: a = 7 def printA(): print "Value of a is %d" % (a) def setA(value): a = value print ...
6
votes
3answers
522 views

Have you ever used a “class instance variable” in any of your Ruby code?

I can understand why you would need a class variable to keep track of things like the total number of objects that have been instantiated in that class. And I can understand why you would need an ...
6
votes
2answers
1k views

Java object reference/scope question

If I have a member variable such as this (declared in the body of a class) private Dot[] dots=new Dot[numDots]; I loop through all members of this array, and: 1) Pass every Dot object to a ...

1 2 3 4 5 14