An API is a contract between a caller and a callee. The most common forms of API abuse are caused by the caller failing to honor its end of this contract. For example, if a program fails to call chdir() after calling chroot(), it violates the contract that specifies how to change the active root directory in a secure fashion. Another good example of library abuse is expecting the callee to return trustworthy DNS information to the caller. In this case, the caller abuses the callee API by making certain assumptions about its behavior (that the return value can be used for authentication purposes). One can also violate the caller-callee contract from the other side. For example, if a coder subclasses SecureRandom and returns a non-random value, the contract is violated.
Poor Style: Explicit Call to finalize()
finalize()
method should only be called by the JVM after the object has been garbage collected.finalize()
method to be called from outside the finalizer, doing so is usually a bad idea. For example, calling finalize()
explicitly means that finalize()
will be called more than once: the first time will be the explicit call and the last time will be the call that is made after the object is garbage collected.Example 1: The following code fragment calls
finalize()
explicitly:
// time to clean up
widget.finalize();