0
votes
4answers
51 views
accessing variable modifications made from within an inline function in javascript
Hello all,
I'm trying to pass local variables to an inline function in javascript and have that (inline) function manipulate those variables, then be able to access the changed variable values in …
1
vote
3answers
91 views
access a lambda expression outside of the enclosing scope
I have the following piece of test code and want to access the variable result outside the enclosing lambda expression. Obviously this does not work as result is always null? I have Googled around a …
0
votes
2answers
45 views
Variable outside event handler’s scope
I am having a Javascript kerfuffle that goes beyond my knowledge of the language.
I am creating a custom plugin for CKEditor. The plugin is an IFrame that opens in a DIV generated by CKEditor.
…
0
votes
4answers
62 views
Learning JavaScript variable scope and object instantiation.
var foo = (function() {
var proxy = {},
warning = false;
proxy.warn = function(msg) {
if (!warning) {
warning = true;
alert(msg);
}
…
1
vote
3answers
76 views
‘enclosing’ scopes for friendship classes
Bjarne Stroustrup writes:
"a friend class must be previously declared in an enclosing scope or defined in the non-class scope immediately enclosing the class that is declaring it a friend"
Isn't …
0
votes
4answers
62 views
If I have a variable locally declared in a loop that creats a thread, is it safe to use that variable in the called thread, even after the next iteration of the loop takes place?
I have a question about variable scope and memory management in C. I am writing a program that listens for a socket connection and then launches a new thread to handle that client. The main while() …
2
votes
2answers
43 views
Why can’t the VBA Me keyword access private procedures in its own module?
I just discovered that the Me keyword cannot access private procedures even when they are inside its own class model.
Take the following code in Class1:
Private Sub Message()
Debug.Print "Some …
0
votes
2answers
25 views
Actionscript 3: Array Scope in a Document Class
I have the following function to set up cards in a game. I created one array to hold the kind of cards, and another array to hold the position of the cards.
private function …
1
vote
5answers
127 views
Why is this explicit scope resolution necessary?
Setup:
class A {
public:
void a() {}
};
class B {
public:
void b() {}
};
class C: public A, public B {
public:
void c() {}
};
What (I thought) I should be able to do:
C* foo = …
0
votes
1answer
48 views
dojox.layout.ContentPane
The followig code is inside a tag script in the head of a JSP.
I wanted to emulate this behaviour http://dante.dojotoolkit.org/static/xd/stack-accordion.html. The main differences from that sample …
0
votes
1answer
60 views
node.js callback getting unexpected value for variable
I have a for loop, and inside it a variable is assigned with var. Also inside the loop a method is called which requires a callback. Inside the callback function I'm using the variable from the loop. …
1
vote
7answers
183 views
C++ static member functions and their scope
I have two questions.
In C++, a static member function has direct access to a public non-static data member defined in the same class?
False
In C++, a non-static member function has direct access …
1
vote
3answers
46 views
Store javascript variables in array
I am sure someone has gone over this but I have had no luck finding some results.
I want to know what is the fastest way to maintain a proper variable scope.
Here is some example jquery code I wrote …
0
votes
4answers
41 views
Populate ruby Array1 with Array2 String element if and only if Array2 element matches Hash value(not key).
I have a ruby hash:
VALS = { :one => "One", :two => "Two" }
and an Array:
array2 = ["hello", "world", "One"]
Question: How can I populate a new array1 so that it only pulls in any values in …
0
votes
2answers
85 views
Problem with class template specialisations
I'm trying to port some code from VC9 to G++, however Ive run into a problem with template specialisations apparently not being allowed for class members.
The following code is an example of these …
