473,473 Members | 2,048 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Nested functions in c++?

Hello,
code like this:

int f1(int x){
int f2(int y){
return y*y;
}

if(x > 0)
return f2(x);
else
return -1;
}
is invalid. functions cannot have nested functions in c++. I read
comparison d vs other programming languages
http://www.digitalmars.com/d/comparison.html
it says that d has nested functions and other s don't. But I always
used a construct that gives effect of nested function, and I'd like to
ask if such code is valid according to the standard.

int f1(int x){
struct {
int operator()(int y){ return y*y; }
} f2;

if(x > 0)
return f2(x);
else
return -1;
}

Thanks

Jul 23 '05 #1
7 2229
bl******@mail.ru wrote:
code like this:

int f1(int x){
int f2(int y){
return y*y;
}

if(x > 0)
return f2(x);
else
return -1;
}
is invalid. functions cannot have nested functions in c++.
[...potential flame bait removed...] I always
used a construct that gives effect of nested function, and I'd like to
ask if such code is valid according to the standard.

int f1(int x){
struct {
int operator()(int y){ return y*y; }
} f2;

if(x > 0)
return f2(x);
else
return -1;
}


The code is valid.

Nested functions sometimes have other properties (qualities) that local
classes don't, like access to all automatic variables declared in the
scopes surrounding the one that contains the function. You cannot easily
achieve that with local classes. Of course, the usefulness of being able
to access "automatic" variables depends on whether you actually need it.
And apparently, all C++ programmers learned to live without it.

V
Jul 23 '05 #2
* bl******@mail.ru:
... I always
used a construct that gives effect of nested function, and I'd like to
ask if such code is valid according to the standard.

int f1(int x){
struct {
int operator()(int y){ return y*y; }
} f2;

if(x > 0)
return f2(x);
else
return -1;
}


Yes, although for efficiency I wouldn't code it like that.

It's not quite the same as a nested function in a language like e.g. Pascal.

Most important, the local class' members don't have access to the outer
function's arguments.

Second, the local class has internal linkage, and so cannot be used as a
template argument, and that also goes for the class members.

Third (although that has nothing to do with nested functions), AFAIK there's no
way to provide out-of-class definitions of members of a local class.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 23 '05 #3

<bl******@mail.ru> wrote in message
news:11**********************@l41g2000cwc.googlegr oups.com...
Hello,
code like this:

int f1(int x){
int f2(int y){
return y*y;
}

if(x > 0)
return f2(x);
else
return -1;
}
is invalid. functions cannot have nested functions in c++. I read
comparison d vs other programming languages
http://www.digitalmars.com/d/comparison.html
it says that d has nested functions and other s don't. But I always
used a construct that gives effect of nested function, and I'd like to
ask if such code is valid according to the standard.

int f1(int x){
struct {
int operator()(int y){ return y*y; }
} f2;

if(x > 0)
return f2(x);
else
return -1;
}


Yes, it is valid. But it lacks the point of a true nested function - being
able to access the local variables of the enclosing function:

int f1(int x){
int f2(int y){
return x*y; // note we're accessing parameter 'x' here
}

if(x > 0)
return f2(x);
else
return -1;
}

C++ programs often emulate this behavior using either macros or by passing
references to local variables as extra parameters to f2(). But having a true
nested function capability makes the code cleaner and more straightforward
to write.
Jul 23 '05 #4
They have some support for accessing local variables of outer functions
in Boost called Adaptive Closures. This of course is not the same as
with nested functions, but allows you to get access to some variables of
the outer stack frame (especially useful when you can't change the
signature).

Here is the link to read more:
http://www.boost.org/libs/spirit/pho..._closures.html

Yuriy

Walter wrote:
<bl******@mail.ru> wrote in message
news:11**********************@l41g2000cwc.googlegr oups.com...
Hello,
code like this:

int f1(int x){
int f2(int y){
return y*y;
}

if(x > 0)
return f2(x);
else
return -1;
}
is invalid. functions cannot have nested functions in c++. I read
comparison d vs other programming languages
http://www.digitalmars.com/d/comparison.html
it says that d has nested functions and other s don't. But I always
used a construct that gives effect of nested function, and I'd like to
ask if such code is valid according to the standard.

int f1(int x){
struct {
int operator()(int y){ return y*y; }
} f2;

if(x > 0)
return f2(x);
else
return -1;
}

Yes, it is valid. But it lacks the point of a true nested function - being
able to access the local variables of the enclosing function:

int f1(int x){
int f2(int y){
return x*y; // note we're accessing parameter 'x' here
}

if(x > 0)
return f2(x);
else
return -1;
}

C++ programs often emulate this behavior using either macros or by passing
references to local variables as extra parameters to f2(). But having a true
nested function capability makes the code cleaner and more straightforward
to write.


Jul 23 '05 #5

"Yuriy Solodkyy" <so*****@tamu.put_edu_here> wrote in message
news:d4**********@news.tamu.edu...
They have some support for accessing local variables of outer functions
in Boost called Adaptive Closures. This of course is not the same as
with nested functions, but allows you to get access to some variables of
the outer stack frame (especially useful when you can't change the
signature).

Here is the link to read more:
http://www.boost.org/libs/spirit/pho..._closures.html


Thanks for the link. What that does is move the declarations of locals into
a local class, and then presumably a pointer to that class is passed into
the 'nested' function. While I've used this technique, it's only a half
solution (doesn't do parameters) and is complex and obtuse to use.
Jul 23 '05 #6
Thanks for answers, and links.
When I posted my message I didn't think about accessing local
variables, so this is't really nested function. I good article about
that I found: http://www.gotw.ca/gotw/058.htm

I only have a question to Alf:
Yes, although for efficiency I wouldn't code it like that.


How then would you code this place? with #define's? For such simple
case compiler optimization will result in the equivalent code like the
following:
int f1(int x){
if(x > 0)
return x*x;
else
return -1;
}

Jul 23 '05 #7
* pa**********@gmail.com:
Thanks for answers, and links.
When I posted my message I didn't think about accessing local
variables, so this is't really nested function. I good article about
that I found: http://www.gotw.ca/gotw/058.htm

I only have a question to Alf:
Yes, although for efficiency I wouldn't code it like that.


How then would you code this place? with #define's? For such simple
case compiler optimization will result in the equivalent code like the
following:
int f1(int x){
if(x > 0)
return x*x;
else
return -1;
}


As a rule, don't rely on compiler optimizations when you can express what
you want in code. For example, use const& arguments for strings etc. instead
of relying on compiler optimization. In such cases, and in this case,
optimization considerations can indicate more _natural_ ways to write the
code, ways that more directly reflect the intended effect:

int f( int x )
{
struct local
{
static int square( int x ) { return x*x; }
};

return (x > 0? local::square( x ) : -1);
}

Here there is no unused implicit argument to function 'square'.

However, it's probably Bad Advice to tell people to think about optimization,
because in most cases those who think optimization end up with code that's not
just unnatural, extremely complicated and inefficient, but also plain wrong...

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 23 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Nils Grimsmo | last post by:
hi, i'm having some trouble nesting functions. consider the following: def h(): x = 1 def g(): print x # ok, x is taken from h g()
6
by: Andy Baker | last post by:
Hi there, I'm learning Python at the moment and trying to grok the thinking behind it's scoping and nesting rules. I was googling for nested functions and found this Guido quote:...
6
by: A | last post by:
Hi, How do you make use of nested functions in C++? I realize in C++ that everything must be declared first in a header file before implementation in a .cpp file. I tried to nest a method...
2
by: Forgone Conclusion | last post by:
Hi, I have a View that groups and sums up totals. This View is then nested within in another View and used (it needs to be done like this). What i need to do is to be able to vary the records...
10
by: nimmi_srivastav | last post by:
Below you will see an example of a nested conditional expression that this colleague of mine loves. He claims that it is more efficient that a multi-level if-else-if structure. Moreover, our...
9
by: Gregory Petrosyan | last post by:
I often make helper functions nested, like this: def f(): def helper(): ... ... is it a good practice or not? What about performance of such constructs?
4
by: Wolfgang Draxinger | last post by:
If you know languages like Python or D you know, that nested functions can be really handy. Though some compilers (looking at GCC) provide the extension of nested functions, I wonder, how one...
2
by: Johannes Bauer | last post by:
Nick Keighley schrieb: Why is there actually a *need* for nested functions? If functionality of subfunctions which are only locally visible is desired, why not put the nesting function parent...
9
by: Gabriel Rossetti | last post by:
Hello, I can't get getattr() to return nested functions, I tried this : .... def titi(): .... pass .... f = getattr(toto, "titi") .... print str(f) .... Traceback...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.