June 2018
Intermediate to advanced
316 pages
6h 34m
English
IntelliJ IDEA has the Memory Viewer right out of the box, so you don't need to do anything to get started. This plugin extends the debugger and allows you to explore the heap during debug sessions.
The user interface of the Memory Viewer looks as follows:

You can retrieve the following information using this tool:
In this example, we'll use the following code snippet:
class Teaclass Coffeeclass Cup<out T>(val drink: T)fun main(vars: Array<String>) { val cupOfTea = Cup(Tea()) val cupOfCoffee = ...
Read now
Unlock full access