Package cn.sliew.milky.objectsize
Interface ObjectSizeOfStrategy
-
- All Known Implementing Classes:
SerializableObjectSizeOfStragegy
public interface ObjectSizeOfStrategy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longsizeOf(Object obj)Computes the size of an object.
-
-
-
Method Detail
-
sizeOf
long sizeOf(Object obj)
Computes the size of an object. This typically is an estimation, not an absolute accurate size.- Parameters:
obj- The serializable object to compute size of- Returns:
- The size of the object in bytes. failed with -1.
-
-