You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that what you are printing contains strings created by classes and objects from the JVM.
If this code is executed only once, it will include all code related to class loading and compilation which creates also strings.
The utility takes a histogram of memory before and after your lamda. It doesn't instrument your code and doesn't know what is happening inside. Internally, the JVM does a lot of things to compile and execute your lambda, and concurrently does other things (GCs for example...)
But I see another problem: if you execute these code repeatedly in the nth execution, the result will be 0 bytes because "text" is created as a constant by the java compiler and is instantiated outside your code (and reused every time you reference to "text" string).
To test correctly these code you must force the creation of a new String:
simple test like this
returns random values,
e.g.:
The text was updated successfully, but these errors were encountered: