简体   繁体   中英

How to enable a recursive function to avoid stack overflow?

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++?

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.

https://godbolt.org/z/tSDODA

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM