-2
votes
1answer
37 views

How to access variable across files in C? [duplicate]

I have a file1.c and file2.c. If I define a variable in file1.c, and assign a value to it, how can I access this variable from file2.c? How should I declare the variable in file1.c and how to ...
1
vote
1answer
52 views

How to get environment of a variable in R

I was wondering if there is anyway to get the environment of a declared variable. Say I already have declared a variable to an environment and want to use that variable's environment to declare a few ...
-2
votes
3answers
41 views

Access a variable from inside a do while loop

How can I access a variable from inside a do while loop in Java? This is the exercice i'm currenty working on ... We ask the user write a value until the value entered is not is between 0 and 10 ...
3
votes
2answers
33 views

Why JavaScript declared variable is in the global object before initialization?

I've stumbled upon a JavaScript variable behavior I could not explain. According to JS docs on var keyword : The scope of a variable declared with var is the enclosing function or, for ...
0
votes
1answer
19 views

In bash how to modify an external variable from within a function that is piped?

I have two scripts that call each other. I need to modify a given variable in both. It doesn't work. A.sh : #! /bin/sh funcA() { echo "var B in funcA (1) $__varB" __varB="xxx" echo "var ...
0
votes
5answers
97 views

correctly resetting a global variable in javascript?

so, in this post here people are discussing the fact that A = [1,2,3]; and then doing A = []; will not reset the array but create a new one. My question is, if I use a global object variable ...
2
votes
2answers
43 views

How do I access my control from another method

I am making space invader and I want my bullets to come out of the position where my cannon is. When I press space a bullet will fire but I need it to be able to access the location of my cannonX ...
0
votes
3answers
44 views

Javascript Global Scope Misinterpretation

I've come across this problem often and thought I'd finally ask for an explanation. I have Google Chrome and use the javascript console often. When I declare a global variable I can always access its ...
0
votes
1answer
38 views

Defining jquery variable into function that's out of scope

I'm trying to pass a paramater (gmap_settings) to a function (initialize) that is in an included external js file. My php file looks something like this: <?php $setting = array( 'zoom' => 8 ...
0
votes
1answer
39 views

Applet not carrying variables from init method to paint method

This is an applet for my class. Why is my final g.drawString printing 0's for all the variables i have in it? import javax.swing.*; import java.awt.*; public class Days extends JApplet { private int ...
-1
votes
4answers
41 views

using functions to create a set of variables php [closed]

i am trying to create a function to create a set of variables that are arrays like so function breakDownPOSTArray($count, $fields) { $repeat = 1; $num = 0; while ($repeat <= $count) ...
1
vote
1answer
39 views

Understanding variable scope in Python classes [duplicate]

Can someone please explain why this will fail: class A: a = 42 b = list(a + i for i in range(10))
1
vote
1answer
29 views

Accessing ruby variables in nested objects

I have a gem that I am working on. In it is an executable that parses a Config file and then instantiates a couple of objects. One of these objects then instantiates a number of "handler" objects. ...
1
vote
2answers
100 views

How can I access a hidden member from a derived class?

I have two classes, one derived from the other. These classes both introduce variables with the same name. The variable in the derived class hides that in the super class. How can I refer to the ...
0
votes
1answer
56 views

Variable scope and reference in OOP

While coding a function in a class that is supposed to be instantiated, some variables are used only temporarily - e.g. as a counter in a for loop - some are globals and others are returned and/or ...
0
votes
3answers
265 views

xpages - how to set a scope variable from client side javascript?

I'm trying to set an XPages scope variable from Client side Javascript. I have an XPage which contains several sections which are shown or hidden using Dojo. On this XPage I have a button which ...
-1
votes
2answers
67 views

pass this local js variable as an argument to a new function

I've read several posts on passing local function variables to new functions in javascript but am still having trouble in my own particular case. I'm trying to pass the term argument given to data: ...
0
votes
2answers
64 views

How do I reference a parent variable in JavaScript? like _parent.myvar

I have variables set in the main root of the script var name="blah"; I need to refer to this from within a function w/o PASSING it directly in its parameters. I could set the variables in the ...
0
votes
1answer
47 views

A little confused about JavaScript variable scope (single level)

I have two functions, let's say: getCustomers() - get customers list getCustomerDetials() - get details of each customer I run getCustomers() and that function runs within itself the ...
-1
votes
1answer
58 views

why does this php variable lose its value when passed as an object method's parameter? [closed]

I have some PHP code where at one point a variable, order_status has a value, but once passed on into an instantiated object, it seems to lose its value within that object. It's like this: ...
0
votes
3answers
49 views

calling a function with require but variables and arrays are undefined

Why aren't my variable seen when called with require ? function.php <?php function paginator(){ $links = array("index.php", "services.php", "content.php","contact_us.php" ); $trimslug ...
0
votes
2answers
95 views

How do I make a variable in scala change?

So I have this variable, currentPartNumber, which starts off being equal to 0. What I want to happen is in my function, if the variable is equal to zero, it is changed to 1 and the text is printed ...
0
votes
0answers
61 views

Understanding variable scope in my program

I am a newbie at programming and have successfully been using this site to learn and overcome obstacles. Before I bring my new question forward, let me first thank all those who have been such a great ...
1
vote
1answer
35 views

scope of variable in nodejs inside a function

How to scope datat ? Here datat is empty. And i would like to put data in a var so i can use it outside the function. var datat; twit.search('#louieck', ...
-1
votes
3answers
75 views

Why is my function not declared in this scope?

#include <iostream> using namespace std; int center_function(int a){ double p_straight_step = (1- 2*p/3) ; return 0; } int main(){ int N,M,t ; double p; int x=0, y=0 ; ...
0
votes
1answer
45 views

Mootools variable scope issues

I have a problem getting my mind round variable scope and could do with some help :) I'm setting up a module in joomla that will rotate images. I've a bit of code I've used on non Joomla sites that ...
0
votes
2answers
51 views

Bash Script Variable Scope Issue

username="hello" password="3333" function login { # 1 - Username # 2 - Password match=0 cat LoginsMaintMenu.txt | while read line; do x=`echo $line | awk '{print $1}'` ...
7
votes
2answers
110 views

Python variable naming/binding confusion

I am relatively new to Python development, and in reading through the language documentation, I came across a line that read: It is illegal to unbind a name that is referenced by an enclosing ...
2
votes
3answers
66 views

Method level scope of variables

I am a beginner in Java and came across these errors while practicing, so I thought of clarifying them instead of trying to memorize the error to avoid them. public static int gcd(int a, int b) { ...
1
vote
1answer
72 views

Where are vars stored in Nodejs?

In any web browser executing the following script will result in 'wee' being sent to the console. In Node it sends {}. var d = 'wee'; console.log(this.d); I realize that in Node this refers to the ...
-2
votes
1answer
61 views

javascript use return of one function inside another

i have a function A, that uses a function B inside, i want to use the return variable from function B inside function A but it always gives me undifined... ive searched a lot on the web for answers ...
1
vote
5answers
178 views

Local/static variable scope in C++

If I write something like this: #include <iostream> int main() { using namespace std; {int n;n=5;} cout<<n; system("pause"); return 0; } The compiler tells me that n ...
1
vote
1answer
83 views

Variables which can't be accessed in the current scope in C

I've heard about the concept of live variables which can't be accessed in the current scope. The three examples I could think of off the top of my head are: ptr = malloc(size * sizeof(ptr_type); ptr ...
0
votes
0answers
32 views

Using a variable outside onreadystatechange

I want to give a value to a variable inside the onreadystatechange function and use it outside. xml2.onreadystatechange = function() { if (xml2.readyState === 4 && xml2.status ...
2
votes
3answers
57 views

Returning Javascript Variables and Performance

I currently have all my script's required elements cached in a global object similar to this: var MainObject={ $El1 : $('#element1'), $El2 : $('#element2') }; Inside my methods I can then ...
0
votes
1answer
51 views

Array isn't being seen by function.. storing in variable a no-no?

I've googled around and didn't see the answer. I have an array I'm storing in a variable that I'm trying to pass to a function.. $myArr = 'array('item1', 'item2')'; require('script.php'); //where ...
0
votes
2answers
87 views

defining an undefined global variable inside a function

This is messy stuff (not my code but I'm stuck to it). A function depends on a globally defined variable. function variableIssues(){ alert(someGlobalString); // alerts "foo" } Sometimes this ...
0
votes
0answers
27 views

xcode - variable losing its value

I seem to have a variable scope problem I can't figure out. I have global variable in one class, defined in the .m file: int ball[2]; In one procedure called early, I have ball[0]=4; ...
0
votes
1answer
57 views

Why can't this function see the variables of a file included in an included file?

first post here! Okay so I have a function containing this code: require_once('../strap.php'); $admin = new Member; $admin->setName($_POST['username']); $admin->setPassword($hash); ...
1
vote
1answer
53 views

bash variable inside quotes

I want to run the following command ssh data@server.org "cd /home/data/ ; chmod o+rx directory_$DATE" $DATE is a bash variable. Is there a way to get it interpreted as a variable?
-3
votes
1answer
100 views

Variables in java not holding their value inside loop

I am iterating through possible radii for a circle (r), and when I find potential candidates I basically want to push them onto a stack. I only need to remember the last two radii and the color of the ...
2
votes
3answers
413 views

PHP mysqli connection class - can't access the connection variable outside. Scope issue [duplicate]

I am new to using PHP in an OOP way but have found an issue with my database connection class. I have a file with this mysqli connection class here $db_name = 'dbname'; $db_user = 'dbuser'; ...
3
votes
2answers
130 views

Assigning variables with setf, defvar, let and scope

So, I have read from setq and defvar in lisp, http://www.cs.ucf.edu/courses/cop4020/spr2006/plsetup.html, and In Lisp, how do I fix "Warning: Assumed Special?" among other places about ...
0
votes
3answers
126 views

How do I pass a variable to a ajax success function as it was at the time of the ajax call?

So this is my ajax call (pretty much standard jQuery but using the couchdb jquery library, http://daleharvey.github.com/jquery.couch.js/ ): var stuff = "some stuff"; $.couch.db("test_db").create({ ...
1
vote
4answers
166 views

Javascript global variable redefinition?

I have a questions regarding variable scope in Javascript. I have a series of scripts on a webpages loading at different times. I need a global object called MyVar for example to be accessible to them ...
0
votes
2answers
55 views

Not seeing variables in an Excel macro

I have searched the questions and found some that are very close but I'm still doing something wrong. I want to use a variable for the worksheet name in the following code: Option Explicit Dim ...
0
votes
2answers
51 views

How does one share a variable in a PHP class if delcared like $var (not $this->var)

I know it's better to do things the way it's meant to be, using $this->fname to declare and set variables in a class.... i get that.. but to not make this question long, let's just say I have a ...
1
vote
2answers
45 views

Javascript function variable scope passthrough geolocation

I'm just trying to get variables out of the geolocation.getCurrentPosition function from HTML5. However, I'm having a lot of difficulties getting my variables to be defined outside of the function. ...
0
votes
2answers
129 views

GWT - Reference to a global variable set by callback method

Please help me, as I will go mad with this soon: When I run the code, on first occasion loadNewPoint() is executed and displays some data from global variable - allPointsAndPlaces However when I ...
1
vote
1answer
170 views

Advantages and Disadvantages of making a variable class level vs final local

I have been coding in Java for some time now and I have to make a decision on whether or not to make a variable class level vs making a final local variable so I have scope on it within my code. Is ...

1 2 3 4 5 7