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.
为什么它显示负数的 MemUse?
函数可以释放比它们分配的更多的内存。(注意:一个函数可以释放分配在其他地方的内存。)
例如,考虑一个a()调用b(). 说,b()分配一个字符串或数组并将其返回给a()它,然后在本地使用它,然后a()完成。在这种情况下,b()的内存分配将是+ve,而a()' 的净内存分配将是-ve()(因为它负责释放分配的内存b())。
a()
b()
+ve
-ve()
下面的脚本就像一个 sharm 一样工作:
<script type="text/javascript"> document.write('<scr'+'ipt type="text/javascript">alert("werwer")</sc'+'ript>'); </scrip