Reputation: 302
If I have a recursive function in Java, I can call it infinitely with the following code:
void recfunction()
{
recfunction();
System.gc();
}
How can I do this in C++?
Upvotes: 1
Views: 149
Reputation: 69864
There is no standard way to force a c++ compiler to perform tail-call optimisation on a recursive function.
Having said that, gcc8 with -O2 will actually perform tail-call optimisation when possible.
Upvotes: 2