0
votes
1answer
17 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 ou …
2
votes
6answers
114 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:
strin …
0
votes
1answer
34 views
how to get an anonymous function to keep the scoping it had originally when called in an event handler
I have a setup where I get some information, in an ajax call, then I immediately use some of that information for another call, and then I populate some fields.
The problem is tha …
0
votes
3answers
56 views
VBScipt: Call builtin functions shadowed by global variables
VBScript on ASP Classic contains an "int" function. (It rounds numbers towards -∞.) Suppose that some excessively "clever" coder has created a global variable named "int". Is there …
0
votes
1answer
5 views
capacity scoping
how to perform a capacity scoping for sql server ?
13
votes
12answers
956 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?
0
votes
4answers
86 views
Dynamically scoped variable in java ? (a.k.a one variable per method execution)
hi,
I would like to know if it's possible in java to declare a variable local to the execution of the method.
For instance, if i'm doing some recursive stuff and i want to keep …
0
votes
4answers
59 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 …
1
vote
3answers
114 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
Pu …
4
votes
4answers
364 views
Can I use blocks to manage scope of variables in C++?
Hi, 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 perform …
2
votes
4answers
152 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( …
5
votes
8answers
232 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?
0
votes
1answer
77 views
Javascript closure scoping issue
I'm trying to get a reference to cell and it appears null. If I'm understanding it correctly, I should be able to reference the variable. Correct?
$('td[someAttr]').mouseenter(fun …
0
votes
4answers
133 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: …
0
votes
3answers
1k views
Oracle - How to have an out ref cursor parameter in a stored procedure?
The standard way that our applications pass information from oracle stored procedures to the oracle .net provider is via an out ref cursor parameter.
In the past all of our stored …
