Tagged Questions

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

learn more… | top users | synonyms (1)

240
votes
13answers
83k views

Can a local variable's memory be accessed outside its scope? [closed]

Possible Duplicate: Returning the address of local or temporary variable I have the following code. int * foo() { int a = 5; return &a; } int main() { int* p = foo(); ...
22
votes
5answers
556 views

At what moment is memory typically allocated for local variables in C++?

I'm debugging a rather weird stack overflow supposedly caused by allocating too large variables on stack and I'd like to clarify the following. Suppose I have the following function: void function() ...
15
votes
5answers
303 views

Goto prior to a variable definition - what happens with its value?

Here is some question I wondered about. Given the following code, can we be certain about its output? void f() { int i = 0; z: if(i == 1) goto x; else goto u; int a; x: if(a == 10) goto y; ...
13
votes
7answers
1k views

What's the scope of a Python variable declared in an if statement?

I'm new to Python, so this is probably a simple scoping question. The following code in a Python file (module) is confusing me slightly: if __name__ == '__main__': x = 1 print x In other ...
12
votes
7answers
174 views

How do I value-initialize a Type* pointer using Type()-like syntax?

Variables of built-in types can be value-initialized like this: int var = int(); this way I get the default value of int without hardcoding the zero in my code. However if I try to do similar ...
11
votes
9answers
282 views

Using function arguments as local variables

Something like this (yes, this doesn't deal with some edge cases - that's not the point): int CountDigits(int num) { int count = 1; while (num >= 10) { count++; num /= ...
10
votes
4answers
1k views

Local variables with Delegates

This is clearly not appears like it wouldn't be a best practice, but can someone explain why or how this works. Or recommend a good book to learn more. //The constructor public Page_Index() { ...
9
votes
6answers
321 views

Why does local variable kill my global variable?

Sorry for this question, but this issue really screwed up my day. The following Code alerts 10 as it should: var globalId='10'; function check(){ alert(globalId); } check(); But this ...
7
votes
1answer
81 views

Ruby: method inexplicably overwritten and set to nil

If I execute this ruby code: def foo 100 end p defined?(foo), foo if false foo = 200 end p defined?(foo), foo The output I get is: "method" 100 "local-variable" nil Can someone explain to ...
7
votes
1answer
155 views

Why a procedure is so much faster when put into a function?

Here is what I did, I created 2 procedures, one in a function and one in the python file itself. The one on the python file itself run almost 2 times slower even if it's exactly the same. WHY ? ...
7
votes
3answers
189 views

why is array size limited when declared at compile time?

for example I can do int *arr; arr = (int *)malloc(sizeof(int) * 1048575); but I cannot do this without the program crashing: int arr[1048575]; why is this so?
7
votes
3answers
303 views

Where are .NET local variables stored?

In IL, you can define local variables using the .locals directive. Where are these variables stored, stack or heap?
7
votes
5answers
1k views

How to declare a local constant in C#?

How to declare a local constant in C# ? Like in Java, you can do the following : public void f(){ final int n = getNum(); // n declared constant } How to do the same in C# ? I tried with ...
7
votes
1answer
1k views

Where are Java final local variables stored?

Take the following example: public void init() { final Environment env = new Environment(); Runtime.getRuntime().addShutdownHook(new Thread() { public void run() { ...
6
votes
7answers
774 views

Pointer to local variable

May I have any acces to local variable in different function? If may, how? void replaceNumberAndPrint(int array[3]) { printf("%i\n", array[1]); printf("%i\n", array[1]); } int * getArray() { ...
6
votes
5answers
167 views

Is there a performance hit of replacing local variables with arguments in Javascript?

Is there any performance hit for writing a function such that local var statements are replaced with arguments? Example: function howManyMatch(arr, pattern, /*ignored:*/ i, l, total) { l = ...
5
votes
3answers
164 views

Perl map block local variable usage

This code compiles a set by way of hash keys of the unique basename stubs in a set of paths. %stubs = map { $f=basename $_; $f =~ /^([A-Za-z]+[0-9]+)\./ ; $1=>() } @pathlist; Why do I need the ...
5
votes
5answers
296 views

Why are local variables not declared final in most open source java projects?

If I look at the java source source code in the OpenJDK or Hibernate or Apache I have yet to see any local variables declared final. This suggests that the developers of some of the most widely used ...
5
votes
2answers
496 views

in Delphi, whats the difference between a threadvar and a local variable

In my threads, I always declare local variables "normally", thus: procedure TMyThread.Execute ; var i : integer ; begin i := 2 ; etc, If I declare them thus: procedure TMyThread.Execute ; ...
5
votes
10answers
1k views

In C, does using static variables in a function make it faster?

My function will be called thousands of times. If i want to make it faster, will changing the local function variables to static be of any use? My logic behind this is that, because static variables ...
5
votes
2answers
790 views

Should you only use local variables in a partial?

Using local variables seems advisable in a partial that could be used application-wide to avoid dependencies across the application. But within a single controller it seems acceptable to reference ...
4
votes
4answers
306 views

Variable sharing inside static method

I have a question about the variables inside the static method. Does the variables inside the static method shares the same memory location or would the have separate memory? Let me make an example. ...
4
votes
3answers
1k views

Undefine variable in Ruby

Let's say I'm using irb, and type a = 5. How do I remove the definition of a so that typing a returns a NameError? Some context: later I want to do this: context = Proc.new{}.binding context.eval 'a ...
4
votes
2answers
386 views

Can someone explain these few lines of MSIL? Why does it move a value off the evaluation stack to a local variable, only to move it back immediately and return it?

The following MSIL code loads a single argument (a string), calls a method, which returns bool, and then returns that bool value. What I don't understand is why it calls stloc.0 to store the method's ...
3
votes
2answers
59 views

What is a variable defined inside class definition without decorator @ or @@?

In Ruby, such code is legal: class Aclass m = 1 end but semantically speaking, what will m be, and how is it supposed to be accessed?
3
votes
2answers
125 views

Javascript: object copy, global vars, and performance

I have a quite complicated question to ask :) I am currently working on a html5 canvas game. The variables which are specific to a map of the game are in a separate file (let's call it game.js), ...
3
votes
1answer
300 views

Access private (local) variable inside a closure scope

I'm making a google chrome extension and trying to get reference of a local variable within a closure scope. // The script model of the target website // I can't change any code of these function ...
3
votes
1answer
237 views

Unbound local variable problem in Python

I've got a following code snippet: def isolation_level(level): def decorator(fn): def recur(level, *args, **kwargs): if connection.inside_block: if ...
3
votes
3answers
163 views

JavaScript: How to use dynamic local variables

How would I reference a dynamic local variable? I know how to accomplish this with a global variable scope; for example. myPet = "dog"; alert(window["myPet"]); // Alerts "dog" How would I ...
3
votes
1answer
296 views

How to list local-variables in Ruby?

def method a = 3 b = 4 some_method_that_gives # [a, b] end
3
votes
4answers
434 views

How to use acast (reshape2) within a function in R?

I tried to use acast from reshape2 within a self written function, but had the problem that acast did not find the data I send to it. Here is my data: library("reshape2") x <- data.frame(1:3, ...
3
votes
11answers
410 views

Can static local variables cut down on memory allocation time?

Suppose I have a function in a single threaded program that looks like this void f(some arguments){ char buffer[32]; some operations on buffer; } and f appears inside some loop that gets ...
3
votes
2answers
586 views

Releasing local variables before return?

In objective-c, I understand that you need to release anything you init/retain/copy. Do I need to do that before a return statement? I'm wanting to understand calling release explicitly and not use ...
2
votes
1answer
44 views

Emulating function static variables using threadstatic static fields?

For some static methods I realise it is extremely convenient to use a small array to temporarily store values during an operation. Said array is useful because you need indexing, but allocating that ...
2
votes
4answers
162 views

use of unassigned local variable `total`

I want to have a sum of all intervals , but I write this code I have an error stating: use of unassigned local variable total ? enter TimeSpan total; foreach (var grp in query) { TimeSpan interval ...
2
votes
2answers
59 views

Why would I be getting a Null pointer exception with Gui input and listener methods?

I am new to Java and I am trying to allow a user to enter an employees first and last name via the Gui and when they press the submit button it activates the listener methods and allows the values ...
2
votes
7answers
88 views

Set local variable to null in PHP

Very often in code added by my more .NET oriented colleagues, I'll run into something like this: function someFunction() { $localVariable = otherFunction(); $ret = $localVariable * 2; // or ...
2
votes
4answers
39 views

In a singleton class (in my case C++), if one method is called more than once, will the locals be on the stack?

i have singleton class , when calling one of the singleton methods more then once in the same time , and this method has local variables . does each method call of the singleton gets its own private ...
2
votes
2answers
158 views

llvm: generating cleanup destructors before function return

in LLVM, usually you will exit a generated function with CreateRet, however, i want to add cleanup destructors for local objects instantiated in the function. My question is: i assume i have to ...
2
votes
2answers
435 views

C# reusable function to dump current value of local variables

I would like to write a reusable function I can call within any method to log a snapshot of all the local variables. For example: void somemethod() { int a = 1; string s = ...
2
votes
4answers
207 views

Local-variable declaration inside a “virtual” loop optimization

This time, I couldn't find what I'm looking for (dunno if I'm not searching for the right stuff...) but, here it is: In c++, imagine you have a function Bar() that is called once every cycle... like ...
2
votes
4answers
304 views

Use of unassigned local variable? C#

I have the following code: double ticketPrice; LoadOperation loGetTickets = ticketClass.loadTickets(); loGetTickets.Completed += (s, args) => { foreach ...
2
votes
4answers
114 views

What kind of Ruby variable do I want to use here?

I’m still learning Ruby, and I’m curious about whether it is appropriate to use a class variable, constant, or local variable in this scenario. In my below code example (that generates random ...
2
votes
1answer
195 views

how refer to a local variable share same name of a global variable in C?

for example #include<stdio.h> int foo = 100; int bar() { int foo; /* local foo = global foo, how to implemented? */ return 0; } int main() { int result = bar(); return 0; ...
2
votes
2answers
374 views

Defining variables within a makefile macro (define)

I am using define to create a macro. However, within a define construct, I am not able to create a variable. Assigning a variable doesn't cause an error, but when I try to use it a bit later, its ...
2
votes
5answers
408 views

returning a local variable from function in C

#include <stdio.h> int foo1(void) { int p; p = 99; return p; } char *foo2(void) { char buffer[] = "test_123"; return buffer; } int *foo3(void) { int t[3] = {1,2,3}; ...
2
votes
4answers
218 views

Getting local variables

When getting a stacktrace as error report from an application that is already deployed, it would be helpful to also get the actual variable values to reconstruct the system's state at the point before ...
2
votes
1answer
183 views

In Ruby, why after starting irb, foo.nil? says undefined error, and @foo.nil? gives “true”, and @@wah.nil? gives error again?

Same in Ruby 1.8.7 and 1.9.2: $ irb ruby-1.8.7-p302 > foo.nil? NameError: undefined local variable or method `foo' for #<Object:0x3794c> from (irb):1 ruby-1.8.7-p302 > @bar.nil? ...
2
votes
1answer
155 views

How to dynamically define a class method which will refer to a local variable outside?

class C end var = "I am a local var outside" C.class_eval do def self.a_class_method puts var end # I know, this is not correct, because the 'def' created a new scope; # I am ...
2
votes
2answers
303 views

Why are local variables also called “Automatic” in Java?

I read this in Kathy Sierra's book: "Local variables are sometimes called stack, temporary, automatic, or method variables, but the rules for these variables are the same regardless of what you call ...

1 2 3