What's a space leak?

后端 未结 2 823
走了就别回头了
走了就别回头了 2020-12-29 12:14

I found the haskell wiki page on space leaks, which claims to list examples of real-world leaks, which it doesn\'t. It doesn\'t really say what a space leak is; it just link

2条回答
  •  难免孤独
    2020-12-29 12:56

    A space leak occurs when a computer program uses more memory than necessary. In contrast to memory leaks, where the leaked memory is never released, the memory consumed by a space leak is released, but later than expected. * Source

提交回复
热议问题