Local variables have a limited scope, generally one function or one functional block.

learn more… | top users | synonyms (1)

0
votes
2answers
30 views

Expression Tree how do I capture a local variable

I'm currently working towards creating dynamic expressions and I have the following scenario, which I'd like help to achieve. given: public class planet { public string name { get;set; } } ...
0
votes
3answers
21 views

Issue with setting value for Python class inherited from multiprocessing.Process

Why this code import multiprocessing import time class Bot(multiprocessing.Process): def __init__(self): self.val = 0 multiprocessing.Process.__init__(self) def ...
2
votes
3answers
57 views

Recursive functions and global vs. local variables

I'm writing a recursive function in R, and I want it to modify a global variable such that I know how many instances of the function have been called. I don't understand why the following doesn't ...
0
votes
2answers
41 views

calling within ActionListener

I'm trying to plug my code into my GUI at the moment i can't find a way to call text in the ActionListener with out breaking my code I know there are some things in findAndReplace() i will need to ...
0
votes
1answer
16 views

Add a local variable to an actionscript or javascript function

First of all, it is my understanding that appart from some syntax javascript and actionscript operate in a very similar way regarding functions. And in both languages I have the need to add a local ...
0
votes
2answers
22 views

Trouble updating a “trivia game” code written in python 2 to python 3

I am trying to get the code for a trivia game written in python 2 to run in python 3. Here is what I've gotten so far, but I'm just too confused at this point. None of the multiple choice answers will ...
0
votes
2answers
56 views

Creating jQuery global variables for input form validation

I have what I believe to be a simple question, but I'm stuck: I am trying to validate a credit card number in an input field. I have a switch statement which picks up the type of credit card, and ...
1
vote
1answer
109 views

Sending/Passing local variable from one procedure to another in Delphi 7?

How can i send/passing local variable in a procedure to another procedure in delphi? procedure TForm1.Button1Click(Sender: TObject); var a,b:integer; c: array [o..3] smallint; begin a:=1; b:=2; ...
1
vote
1answer
51 views

row selection not moving with row moves in JTable

I have following code: import java.awt.BorderLayout; import java.awt.Dimension; import java.util.Vector; import javax.swing.JFrame; import javax.swing.JScrollPane; import javax.swing.JTable; import ...
0
votes
2answers
41 views

accessing local var value from JS function in PHP

After searching for internet and even here for 5 hours, i am still stuck at getting value of a local variable in a function and sending it to PHP. I have tried different syntaxes but none of them ...
0
votes
1answer
30 views

How do I initialize a local union variable?

I frequently define unions inside functions like this: union { sometype A; othertype B; }name; and then go around using them like: name.A = smth; name.B = smthelse; and while it works in debug ...
0
votes
3answers
62 views

Memory Management : scope and local pointer variable

Memory Management : scope and local pointer variable Q. In terms of Memory Management, What is the error in the following code? char* secret_message() { char message_buffer[100]; char* text ...
0
votes
0answers
19 views

Strange Java NBody loop performance with/without arrays

I'm working on benchmarking some programs in some different languages, and I have gotten some very strange results while benchmarking my Java implementations of NBody force simulation (O(n^2) ...
5
votes
2answers
157 views

Can another thread see partially created collection when using collection initializer?

Imagine this C# code in some method: SomeClass.SomeGlobalStaticDictionary = new Dictionary<int, string>() { {0, "value"}, }; Let's say no one is using any explicit memory barriers or ...
0
votes
1answer
17 views

Why is there a difference in giving values to global javascript objects locally?

Please explain why changing a global objects string property in local scope does affect the property in a global scope but giving a new value to the whole object doesn't. In my example, the first ...
1
vote
1answer
59 views

Can't assign a local variable inside a stored procedure on MYSQL

CREATE DEFINER=`root`@`localhost` PROCEDURE `add_item`( IN parentId BIGINT UNSIGNED, IN jobId BIGINT UNSIGNED, OUT id BIGINT UNSIGNED) BEGIN DECLARE newLeft INT UNSIGNED ...
0
votes
1answer
37 views

Using useDelimiter to divide data from txt file

I have a data in a text file which is in format: AB-9, Gregson, Brian, R T, Mr I want to divide the up into and store the first one, AB-9, in a local variable, I have done all of that but the ...
0
votes
2answers
81 views

Maintain Array value with a recursive javascript function

I have a program that we use at my work, which outputs its data in to XML files (several of them). I am trying to develop an HTA (yes an HTA, i'm sorry) to read these files and process their data. ...
2
votes
3answers
79 views

(python) Should my variable be local or global? (best practice)

When declaring a constant that is only used one function, should that variable be declared locally since it is only used by that function, or globally since it is never going to change? IE which is ...
-1
votes
2answers
113 views

Setting a SQL local variable properly

I'm wondering if there is a way to have a local variable use the 'FROM' statement from a SELECT statement that is not declared in the 'SET' of the variable. I have the following example: DECLARE ...
2
votes
1answer
127 views

Android - Performance of an Activity's local variables vs. instance variables

To keep this question simple, consider a scenario where I am creating an Android Activity that simply reads data from an external source and uses that data within a TextView. I am seeing dramatic ...
0
votes
4answers
150 views

Local variable not used

I am trying to make a test of whether an inputted word is a palindrome or not (the same spelled forward and backward). From what I can see it should work but Eclipse says "The value of the local ...
3
votes
5answers
97 views

What memory space is occupied by auto variables in stack

I read that functions in C may use local stack-based variables, and they are allocated simply by decrementing the stack pointer by the amount of space required. This is always done in four-byte ...
0
votes
0answers
34 views

Get local variables with VS macro/addin

I'm trying to do an automatic refactoring to rename variables according to a defined name style. I found this macro: Resharper or CodeRush - global rename which was a pretty good point to start at. ...
1
vote
2answers
51 views

Change JButtons Names and use the new Name. in methods

I have a swing java application on which I have a 114 button I have created the buttons by a loop Container pane = getContentPane(); JPanel panel = new JPanel(); JButton b; for(int ...
0
votes
1answer
65 views

In Python IDLE 2.7, why is raw_input storing multiple values?

I'm trying to build a hangman game in Python, and I've set it repeat the input function if the user inputs a letter they've already tried. For some reason though, the "guess" variable stores every ...
2
votes
1answer
96 views

Where does FORTRAN store local variables?

from the source code published in the programmer's manual of a commercial program, I have isolated a code snippet which puzzles me quite a lot. The function below is expected to be called multiple ...
3
votes
3answers
100 views

C++ local variable deletes memory of another variable when going out of scope [duplicate]

This is my first time asking a question here (but certainly not the first time reading!) so thanks in advance for your help. While designing a class that dynamically allocates memory I ran into the ...
1
vote
2answers
129 views

C++ local variables and threads (not thread_local)

What are the C++98 and C++11 memory models for local arrays and interactions with threads? I'm not referring to the C++11 thread_local keyword, which pertains to global and static variables. ...
1
vote
4answers
158 views

Java: arrays as reference types, in methods

I am moving from C++ to Java, and I have a problem understanding how, in Java, an array lasts outside the method in which it was created. Take a look at this simple code below: public static int[] ...
0
votes
0answers
24 views

Access the For Variable to send into a Function

When i run my ruby script i'm getting the problem that don't recognize my variable inside the "for". Below the error: C:\workspaces\Gerar Build Versao>ruby main_03.rb main_03.rb:18:in ...
-1
votes
1answer
63 views

android java code error

I am creating a keyboard but there is some error in local variable usage. private void updateCandidateText(){ try{ ExtractedText r= ...
5
votes
2answers
148 views

Is it possible to change the allocation area of automatic variables in C/C++?

This is a theoretical question for both C and C++. I have a 4x4 matrix type which is defined quite simply as: typedef float Matrix44[16]; I also have many methods which take a Matrix44 as a ...
0
votes
2answers
76 views

Garbage values in pointer array

#include <stdio.h> void func(int **); int main() { int *arr[2]; func(arr); printf("value [1] = %d \n",*arr[0]); printf("value [2] = %d \n",*arr[1]); return 0; } void func(int ...
0
votes
1answer
56 views

Local arrays in zsh

Zsh has two nice features, the local keyword and the arrays concept. local my_var # Declare variable local to this function and arr=(1 2 3) # Create array with 3 elements arr+=4 # Add a fourth ...
5
votes
4answers
410 views

C++ local variable destruction order

Is there a defined order in which local variables are deallocated in C++ (11) ? To be more concise: In which order will side effects of the destructors of two local variables in the same scope become ...
0
votes
5answers
160 views

Why uninitialized local variable always has the same initial value?

In this piece of code, why in my testing the result is always 1, 2, and 3? #include <stdio.h> void test() { int a; a++; printf("%d",a); } int main(int argc, char *argv[]) { ...
1
vote
7answers
87 views

JavaScript: How to determine a variable's scope?

If I do: var i = j = 0; Is j a local variable? Prove it.
2
votes
1answer
111 views

PHP performance: $this->variable versus local $variable (manipulating)

I had a section in a class that I decided to split into a new one. When I had ported the code section into a new class I noticed it was considerably slower at executing one of the foreach loops. I ...
1
vote
1answer
121 views

CodeBlocks Autocompletion for Local Variables

I am using Code::Blocks 12.11 on Windows 8. I have created a new CPP file and declared a class inside it. The main function is also located in this CPP file. Now, while I do get auto-completion ...
3
votes
2answers
79 views

Output buffering vs. storing content into variable in PHP

I don't know exactly how output buffering works but as far as know it stores content into some internal variable. Regarding this, what is the difference of not using output buffering and storing ...
-2
votes
2answers
63 views

Retrieving local variables in PHP at runtime? [closed]

If I do print_r in $GLOBALS I have all globals vars. But I need something like this: function foo() { $a = 1; $b = 2; for($i = 0; $i < 10; $i++); } ...
0
votes
4answers
48 views

Why does my view code use both an instance variable and a local variable?

I am looking at a book example. In the view section for a Products model, I see some code like this: <table> <% @products.each do |product| %> <tr class="<%= cycle ...
7
votes
1answer
175 views

Difference between return value and local variable

Suppose I have #include <string> class A { public: template<class T> operator T(); A child(); }; void f() { A a; std::string s1 = a; // ok ...
1
vote
2answers
177 views

Attributes as local variables vs instance variables in Rails Validations

In custom validation methods, why are the attributes passed as local variables instead of being accessible as instance variables? I was expecting to use @title instead of title in the custom ...
5
votes
5answers
270 views

Lambda assigning local variables

Consider the following source: static void Main(string[] args) { bool test; Action lambda = () => { test = true; }; lambda(); if (test) Console.WriteLine("Ok."); } It ...
1
vote
1answer
127 views

Performance implications of “too many” local variables in method?

I was assigned to extend a certain component of a software (written by someone else). It's written for Android, fully in Java (has no native/c++ components I know of). When getting familiar with the ...
1
vote
1answer
303 views

How to declare and initialize local variables in gcc inline assembly without extended inline asm?

I know this is a very basic question but I am really stuck on it.In fact I am absolutely newbie in gcc syntax. I want to have local variables ( in fact stack addresses with labels ) without using ...
0
votes
5answers
252 views

What is the difference between local, instance, and class variables? [duplicate]

Possible Duplicate: Difference between class variables and class instance variables? While reading a Ruby book, I seem to have missed the variables chapter. Now I can't seem to understand ...
0
votes
2answers
57 views

Is memory of local function variables cleared on function end?

Consider the following situation.. $var = 'Lots of information'; function go($var) { // Do stuff } Now, when PHP exits the function, does it clear the memory automatically of all local ...

1 2 3 4 5 6