Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
随着递归的进行,如何清理堆栈内存?我不需要存储的第一个字符串,只说后半部分。那么是否可以清除未使用的字符串以提供更多可用的堆栈内存?我试过垃圾收集器,没有运气。
提前致谢
Stackoverflow 发生是因为您的递归太深,您无法清理这部分内存,您需要考虑如何避免如此深的递归或完全跳过它。