1
vote
3answers
43 views
Javascript closure / variable scope question - I know it works, but why?
Hi, I've been developing with JS for a while, and while I know that code below works, I don't really understand why it works.
The way I see it, I've defined testString in testCl …
-1
votes
4answers
102 views
was not declared in this scope C++
Why do I get this error in the code below?
class ST : public Instruction{
public:
ST (string _name, int _value):Instruction(_name,_value){}
void execute(int[]& anArr, int …
0
votes
4answers
99 views
C++ header files simple question
Can .h files see what's in each other without being included? I know when I programmed in C before I could use variables in a .h file from other .h files without #include "myfile.h …
1
vote
5answers
99 views
file scope and static floats
Hello there. I've run into an interesting problem in an AI project of mine. I'm trying to format some debug text and something strange is happening. Here's a block of code:
fl …
3
votes
4answers
132 views
How can I initialize lexical variables in a Perl while condition?
What is the proper way to write something equivalent to the follow:
while ( my $first = $iterator->next && my $second = $iterator->next ) {
# do work
}
This does …
0
votes
2answers
41 views
How to pass variables into inline functions in Action Script 2
I have the following function, but I can't seem to get the myVar variable into the inline function. What am I doing wrong here? What I would like to have happen is when I click o …
1
vote
2answers
31 views
Access variable from scope of another function?
<?php
function foo($one, $two){
bar($one);
}
function bar($one){
echo $one;
//How do I access $two from the parent function scope?
}
?>
If I have the c …
0
votes
3answers
86 views
PHP recursive function + array by reference = headache
I have an interesting problem. The basis of the problem is that my last iteration of an array reference doesn't
seem to "stick," if you will. A little context: I've devised a very …
1
vote
1answer
40 views
JavaScript variable binding and loop.
Consider such loop:
for(var it = 0; it < 2; it++)
{
setTimeout(function() {
alert(it);
}, 1);
}
The output is:
=> 2
=> 2
I would like it to be: 0, 1. …
3
votes
8answers
150 views
foreach, performance-wise. Should we declare variable once before loop or inside it?
What is better for performance wise declaring the variable outside the foreach statment and the each time reassign it in side it (foreach) or create an new variable inside foreach
…
1
vote
3answers
94 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 whi …
0
votes
3answers
69 views
Closure problem? - passing current value of a variable
I'm trying to pass the current value of a variable when an a dynamically generated navigation 'node' is clicked. This needs to just be an integer, but it always results in the last …
3
votes
3answers
237 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 "incr …
0
votes
5answers
104 views
JavaScript Variable Scope Confusion
I'm having a problem with some JavaScript code.
Script
setTimeout(function() {
for (var i = 0; i < 5; i++) {
setTimeout(function() {
console.log(i);
…
0
votes
1answer
54 views
Javascript/jQuery Variable Scope Issue
I have a jQuery script:
$.ajax({
url: "/scripts/secure/development/ajax.asp",
type: "POST",
dataType: "text",
data: "cmd=addresses",
success: function(msg){
var arrR …
