出处:https://www.liaohuqiu.net/cn/posts/leak-canary-read-me/ LeakCanary Android 和 Java 内存泄露检测。 “A small leak will sink a great ship.” - Benjamin Franklin 千里之堤, 毁于蚁穴。 -- 《韩非子喻老》 demo 一个非常简单的 LeakCanary …
在使用到React时,会碰到这种问题:
Warning: Cant perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in the…
1.模拟程序
新建一个Spring Boot程序,启动类添加注解@EnableScheduling,创建定时组件。
@Component
public class MemoryLeaker {private static final Logger LOG = LoggerFactory.getLogger(MemoryLeaker.class);private List<Object> objs = new LinkedList<&g…
标签: 内存泄漏 内存溢出 内存泄漏和内存溢出的区别
内存溢出(out of memory是指程序在申请内存时,没有足够的内存空间供其使用,出现out of memory。比如在我们每个Android程序在运行时系统都会给程序分配一个一定的内存空间,当程…