Interface HeapSize
-
- All Known Implementing Classes:
CachedBlock,CachedBlockQueue,LruBlockCache
public interface HeapSizeImplementations can be asked for an estimate of their size in bytes.Useful for sizing caches. Its a given that implementation approximations do not account for 32 vs 64 bit nor for different VM implementations.
An Object's size is determined by the non-static data members in it, as well as the fixed
Objectoverhead.For example:
public class SampleObject implements HeapSize { int[] numbers; int x; }
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longheapSize()
-