Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
12answers
5k views

What is the difference between my and local in Perl?

I am seeing both of them used in this script I am trying to debug and the literature is just not clear. Can someone demystify this for me?
8
votes
8answers
584 views

What methods are there to modularize C code?

What methods, practices and conventions do you know of to modularize C code as a project grows in size?
7
votes
1answer
279 views

Lambda variable scope

Example: myObject.Stub(s => s.MyMethod(null)).IgnoreArguments().Return("bleh"); var s = "s"; A variable "s" is defined in a lambda and another variable "s" as a local variable within the same ...
7
votes
2answers
3k views

Dynamic Scoping - Deep Binding vs Shallow Binding

I've been trying to get my head around shallow binding and deep binding, wikipedia doesn't do a good job of explaining it properly. Say I have the following code, what would the output be if the ...
6
votes
3answers
92 views

Javascript: z = z || [] throws an error when not using VAR - why?

Out of just intellectual curiosity, why does javascript accept var z = z || []; to initialize z (as z may defined initially) but without var, it throws an error (in global space) z = z || []; ...
6
votes
1answer
75 views

Eagerloading with scoping in rails3

I have been trying to eager load associations based on some scope in my rails3 app, but could not find any solution. My app has following models: class Project has_many :entries has_many :to_dos ...
6
votes
3answers
236 views

Can I “extend” a closure-defined “class” in Javascript?

I have a Javascript "class" defined like so: var Welcomer = function(name) { var pName = name; var pMessage = function() { return "Hi, " + pName + "!"; }; return { sayHi: function() ...
6
votes
5answers
286 views

Why does using the same count variable name in nested FOR loops work?

Why does the following not give an error? for (int i=0; i<10; ++i) // outer loop { for (int i=0; i<10;++i) // inner loop { //...do something } //...do something else } The way ...
5
votes
3answers
75 views

Python scoping mutable vs immutable

First I'm going to start like everyone else. I'm new to python. My teacher gave me the problem: def f(a, b, c): a = 1 c = b c[0] = 2 a = 10 b = [11, 12, 13] c = [13, 14, 15] ...
5
votes
3answers
92 views

Scope & memory issues in Scala

I have a very large List of numbers, which undergo lots of math manipulation. I only care about the final result. To simulate this behavior, see my example code below: object X { def ...
5
votes
1answer
147 views

Common Lisp scoping (dynamic vs lexical)

EDIT: I changed the example code after the first answer because I came up with a simple version that begs the same questions. I am currently learning Common Lisp's scoping properties. After I thought ...
5
votes
1answer
158 views

non-recursively replace built-in javascript functions

I am writing some bookmarklets here and I have some questions related to built-in javascript functions. Let's say I want to replace the built-in prompt function (not necessarily in a bookmarklet). ...
5
votes
5answers
440 views

How do you use “<<-” (scoping assignment) in R?

I just finished reading about scoping in the R intro, and am very curious about the <<- assignment. The manual showed one (very interesting) example for "<<-", which I feel I understood. ...
4
votes
2answers
130 views

using 'global' in php

I'm in learning mode here, very new to PHP, so I'm working with a code sample. Please forgive my use of 'global' here, but I want to understand php variable scoping. Here is myGlobals.php: <?php ...
4
votes
3answers
183 views

Javascript scope question: Can't change element via 'this' obj passed to function, but I can using longhand approach

REVISED QUESTION (SEE BELOW FOR ORIGINAL): Here is an example of a simple ajax load with an event binding on an element within the loaded content: soTest.htm <!DOCTYPE html> <html> ...
4
votes
1answer
94 views

Using Context as a scoping construct in Mathematica

Thinking about a solution to my previous question about switching between numerical and analytical "modes" in a large Mathematica project, I thought about the idea of using Context as a scoping ...
4
votes
1answer
307 views

Scope of dot-dot-dot Arguments

I have a question on the scope of dot-dot-dot arguments. Consider the following function`foo = foo <- function(x, ...){ require(classInt); intvl = classIntervals(x, ...); return(intvl); ...
4
votes
1answer
543 views

could not find function inside foreach loop

I'm trying to use foreach to do multicore computing in R. A <-function(....) { foreach(i=1:10) %dopar% { B() } } then I call function A in the console. The problem is I'm calling a ...
4
votes
4answers
357 views

Scoping and functions in R 2.11.1 : What's going wrong?

This question comes from a range of other questions that all deal with essentially the same problem. For some strange reason, using a function within another function sometimes fails in the sense that ...
4
votes
7answers
367 views

Why can't my Perl subroutine see the value for the variable in the foreach loop that called it?

I hope this is something straightforward that I'm doing wrong. I saw something online about "variable suicide" that looked good, but it was for an older version and I'm on 5.10.1. Anyway - a ...
4
votes
4answers
418 views

Can I use blocks to manage scope of variables in C++?

I'm trying to gain some memory saving in a C++ program and I want to know if I can use blocks as a scope for variables (as in Perl). Let's say I have a huge object that performs some computations and ...
3
votes
2answers
66 views

Type of variable scoping in vba language

I try to understand the VBA scope type, it's impossible to make this such of thing in VBA, but it's possible in other language (java,scala,etc): public sub try() dim myVar as String myvar = ...
3
votes
2answers
96 views

Scala Ambiguous Variable Name Within A Method

I've seen some questions regarding Scala and variable scoping (such as Scala variable scoping question) However, I'm having trouble getting my particular use-case to work. Let's say I have a trait ...
3
votes
1answer
181 views

Node-style require for in-browser javascript?

Are there any libraries for in-browser javascript that provide the same flexibility/modularity/ease of use as Node's require? To provide more detail: the reason require is so good is that it: ...
3
votes
5answers
95 views

python noobie scoping question

I wrote this code: x = 0 def counter(): x = 1 def temp(self): print x x += 1 return temp Trying to test if python is lexical or dynamic scope. My thinking was that y = counter() y() ...
3
votes
3answers
152 views

javascript: how to refer to an anonymous function within the function itself?

if arguments.callee is not allowed in "use strict", and we can't do var f = function g() { //g } because in IE that wouldn't work (or that would work "weirdly") ...
3
votes
2answers
156 views

Python scoping and threading question

I have one thread that inserts into the queueStream (not shown here) and FlowController which is another thread that pops from the queue if the queue is not empty. I verified that the data is ...
3
votes
4answers
282 views

Python scoping problem

I have a trivial example: def func1(): local_var = None def func(args): print args, print "local_var:", local_var local_var = "local" func("first") ...
2
votes
5answers
78 views

c++: Access to members of a class that contains the class that wants the access

Is it possible in c++ to modify a member of a class A that "surrounds" the class B (is in the "upper" scope) besides using a reference of the "surrounding class"? code is here: ...
2
votes
1answer
59 views

Active Record Relation Joins - 3 main tables, 2 join tables

The setup I have a data model with 3 major tables (users, links, topics) with 2 join tables (link_saves and link_topics). My models: User has_many :link_saves, :class_name => 'LinkSave', ...
2
votes
3answers
118 views

Improper nesting of variable scopes in C++?

I have some code that looks something like this: ComplexObject cpy; { RAIILockObject _(obj->mutex); cpy = obj->org; } // use cpy For the sake of argument, assume the default constructor ...
2
votes
1answer
93 views

Inconsistance of scoping between “type …and ” and “let …and ” in Ocaml

I wonder why in Ocaml, "let.. and ..." does not have the same kind of scoping as "type ... and ...": The folowing one is OK, t2 in the same scoping as t1 # type t1 = t2 and t2 = int;; This ...
2
votes
1answer
363 views

Private/scoped variable in JSF2/Facelets <ui:component>?

I might not be thinking correctly in terms of visual components in JSF, but I guess that's part of my question. My question is around the seeming lack of scope around variables declared within JSF ...
2
votes
2answers
169 views

attach() inside function

I'd like to give a params argument to a function and then attach it so that I can use a instead of params$a everytime I refer to the list element a. run.simulation<-function(model,params){ ...
2
votes
1answer
126 views

Rails: default scoping being cached by query cache?

I got a default scoping like this which is dynamic: default_scope :conditions => ["departure_date >= ?", DateTime.current.beginning_of_day] When i use this code the first day is ok. Lets say ...
2
votes
4answers
774 views

Javascript factory pattern variable scoping

I am following a tutorial that is showing the factory pattern to create objects in javascript. The following code has me stumped as to why it works. <html xmlns="http://www.w3.org/1999/xhtml"> ...
2
votes
2answers
280 views

Scoping problem when sfApply is used within function (package snowfall - R)

Let me add another scoping problem in R, this time with the snowfall package. If I define a function in my global environment, and I try to use that one later in an sfApply() inside another function, ...
2
votes
3answers
135 views

How does scoping work in Perl modules?

I don't really understand how scoping works in Perl modules. This doesn't print anything. I would like it if running a.pl printed 1 b.pm $f=1; a.pl use b; print $f
2
votes
1answer
100 views

Why isn't my Ruby object deleted when the last reference goes out of scope?

I've found a weird effect when trying to track down a memory leak in a Rails app. Can anyone explain what's going on here? Save this script as a plain Ruby script (Rails not necessary): class Fnord ...
2
votes
6answers
149 views

variables scoping when inheriting

I have two classes in C++, where one inherits from the other: class A { public: virtual void Initialize(){ m_MyString = "Default value"; } protected: string m_MyString; } ...
2
votes
4answers
273 views

Namespacing/Scoping in CSS

I want to apply the rules in a CSS file to a certain div/class so, for example, the contents of events.css is only applied to the contents of a class called .events and not outside this scope without ...
1
vote
1answer
19 views

in-clause scoping

I am doing some work for a company that has SQL Server 2008. One of their stored procedures references (or appears to reference) a column that does not exist, and yet there is no error. The query ...
1
vote
2answers
53 views

Javascript variable scope issue

I have a simple scoping issue that is eluding me. Here is a simpler version of the code but employs the same principle. function myFunction(){ $('.selector_1, .selector_2').click(function(e){ ...
1
vote
2answers
118 views

if prototypes can't access private variables, what's the best way to “clean up” the code?

Hey guys, what i have now is this: var Human=function(){ this._a=Math.random(); }; (function() { var before_get = function(human) { }; var before_set = function(human, v) { }; ...
1
vote
2answers
407 views

Scope of Derived Tables in SQL Server

I've been looking into SQL recently and exploring a bit. in regards to Temp Tables I have discovered 3 different temp table types: 1) CREATE TABLE #TempTable 2) DECLARE TABLE @TempTable 3) SELECT * ...
1
vote
3answers
186 views

Scala Newb Question - about scoping and variables

I'm parsing XML, and keep finding myself writing code like: val xml = <outertag> <dog>val1</dog> <cat>val2</cat> </outertag> var cat = "" var dog = "" for (inner ...
1
vote
5answers
993 views

Are variables statically or dynamically “scoped” in javascript?

Or more specific to what I need: If I call a function from within another function, is it going to pull the variable from within the calling function, or from the level above? Ex: myVar=0; function ...
1
vote
3answers
357 views

Scoping problem in Ada

I got this problem wrong on my homework, and I can't figure out why: procedure Main is X: Integer; procedure Sub1 is X: Integer; begin - of Sub1 Put(X); end; - ...
1
vote
2answers
445 views

Python variable assigned by an outside module is accessible for printing but not for assignment in the target module

I have two files, one is in the webroot, and another is a bootstrap located one folder above the web root (this is CGI programming by the way). The index file in the web root imports the bootstrap ...
1
vote
1answer
558 views

scoping of private variables in object prototype methods

This question is about the behavior of an object with methods added to its prototype chain and a few private variables. Just out of curiosity and to get my head around this riddle. function ...

1 2