Tagged Questions
The nested-function tag has no wiki summary.
20
votes
4answers
4k views
What are PHP nested functions for?
In JavaScript nested functions are very useful: closures, private methods and what have you..
What are nested PHP functions for? Does anyone use them and what for?
Here's a small investigation I did
...
11
votes
5answers
4k views
Nested Function in Python
What benefit or implications could we get with Python code like this:
class some_class(parent_class):
def doOp(self, x, y):
def add(x, y):
return x + y
return add(x, ...
8
votes
5answers
349 views
Simulating nested functions in C++
In C the following code works consider I always use gcc.
int foo( int foo_var )
{
/*code*/
int bar( int bar_var )
{
/*code*/
return bar_var;
}
return bar(foo_var);
}
How can ...
8
votes
9answers
998 views
Are nested functions a bad thing in gcc?
I know that nested functions are not part of the standard C, but since they're present in gcc (and the fact that gcc is the only compiler i care about), i tend to use them quite often.
Is this a bad ...
5
votes
8answers
185 views
Function inside function in C
Anybody please elaborate these error:-
void main()
{
int a=5, b=60, func();
printf("\nI am in main-1");
int func(){
printf("\nI am in funct");
return 1;
}
...
5
votes
2answers
190 views
Activation Record In GNU C (Nested Function)
In GNU C, The Result is 13. Because the static link is used.
Otherwise, If the dynamic link is used, the result would be 16.
#include <stdio.h>
int h(){
int x = 1;
int g(int z){
...
4
votes
1answer
140 views
How do I change nesting function's variable in the nested function
I'd like to have variable defined in the nesting function to be altered in the nested function, something like
def nesting():
count = 0
def nested():
count += 1
for i in ...
4
votes
1answer
5k views
MATLAB- passing a function handle parameter into another function as a handle
Working on an assignment involving Genetic Algorithms (loads of headaches, loads of fun). I need to be able to test differing crossover methods and differing mutation methods, to compare their results ...
3
votes
2answers
134 views
jQuery changing CSS inside of a nested function call
I'm currently trying to create a drag and drop element which allows me to move an element which it is attached to. Everything is being created dynamically. I'm having a re-occurring problem where I ...
3
votes
4answers
146 views
function inside a function
function1()
{
statement1;
statement2;
function2()
{
statement3;
statement3;
}
}
why does control not enter function2, ...
2
votes
3answers
168 views
Accessing a Variable from Within a Doubly Nested Function in Python
The following code:
x = 0
print "Initialization: ", x
def f1():
x = 1
print "In f1 before f2:", x
def f2():
global x
x = 2
print "In f2: ", x
f2()
...
2
votes
7answers
507 views
What are nested functions? What are they for?
I've never used nested functions, but have seen references to them in several languages (as well as nested classes, which I assume are related).
What is a nested function?
Why?!?
What can you do ...
1
vote
1answer
147 views
Returning value from function inside a function
I'm using goMap and I'm trying to add a function inside it, but I cannot get it to return when the function is called. If I use alert() inside the function, it has the values I need it that should be ...
1
vote
2answers
481 views
How do I declare a nested function in VB.NET?
How would I declare a nested function in VB.NET? For example, I want to do something like this:
Function one()
Function two()
End Function
End Function
However, this statement is invalid in ...
1
vote
2answers
323 views
Returning from a nested function in javascript
I'm trying to make a function that uses jquery's ajaxfunction to get some info from my ajax.php file.
code:
function ajaxIt(dataLine){
$.ajax({
type: "POST",
url: "ajax.php",
...
0
votes
4answers
45 views
Javascript call nested function
I have the following piece of code:
function initValidation()
{
// irrelevant code here
function validate(_block){
// code here
}
}
Is there any way I can call the validate() ...
0
votes
6answers
252 views
JavaScript Nested function
I got a piece of code for javascript which I just do not understand:
function dmy(d) {
function pad2(n) {
return (n < 10) ? '0' + n : n;
}
return pad2(d.getUTCDate()) + '/' +
...
0
votes
1answer
373 views
XCode - nested functions are disabled !
I used to be able to do forEach loops in XCode, but after installing sdk 4 i get errors
error: nested functions are disabled, use -fnested-functions to re-enable
How can i enable nested functions
It ...
0
votes
4answers
184 views
need help with nested jquery function
Please find my code below. My problem is that I the inner jQuery.get() doesn't get executed. Could some one help me out with this?
jQuery(document).ready(function() {
$('.error').hide();
...
-2
votes
1answer
54 views
Nested Functions are disabled, use -fnested-functions to re-enable
Im Displaying This Error: nested functions are disabled, use -fnested-functions to re-enable ,Im running on a MAC what are your thoughts on what causes it?
This is a program that makes a list with ...