Is it possible in C++ to write a function that returns a pointer to itself?
If no, suggest some other solution to make the following syntax work:
some_type f ()
{
static int cnt = 1;
std::cout << cnt++ << std::endl;
}
int main ()
{
f()()()...(); // n calls
}
This must print all the numbers from 1 to n.
I := λx.xin untyped lambda calculus. It returns whatever you give it. Pass it itself (I I), and it returns itself, which is what this question asks for. It's impossible to define in simply typed lambda calculus because we cannot express the required types. Imagine C++:template<class X> X I(X x){return x;}. There's no value ofTto makeI(I<T>)valid. That's a problem calling for creative, constructive input. Ignore it if you wish. – Rob Kennedy Jun 28 '11 at 14:55class C { delegate D D(); static D M(){ return M; } }. Or, the traditional way to do this in functional languages is to define a combinator that takes and returns its own type:class C { delegate D D(D d); static D M(D d){ return M; } }– Eric Lippert Jun 28 '11 at 15:58