Dillo v3.1.1-98-g318d1f14
|
Instances of a sub class of may be compared (less, greater). More...
#include <object.hh>
Public Member Functions | |
virtual int | compareTo (Comparable *other)=0 |
Compare two objects, this and other. | |
Public Member Functions inherited from lout::object::Object | |
virtual | ~Object () |
The destructor is defined as virtual (but not abstract), so that destruction of Object's works properly. | |
virtual bool | equals (Object *other) |
Returns, whether two objects are equal. | |
virtual int | hashValue () |
Return a hash value for the object. | |
virtual Object * | clone () |
Return an exact copy of the object. | |
virtual void | intoStringBuffer (misc::StringBuffer *sb) |
Store a textual representation of the object in a misc::StringBuffer. | |
const char * | toString () |
Use object::Object::intoStringBuffer to return a textual representation of the object. | |
virtual size_t | sizeOf () |
Return the number of bytes, this object totally uses. | |
Instances of a sub class of may be compared (less, greater).
Used for sorting etc.
|
pure virtual |
Compare two objects, this and other.
Return a value < 0, when this is less than other, a value > 0, when this is greater than other, or 0, when this and other are equal.
If c1.equals(c2) (as defined in Object), c1.compareTo(c2) must be 0, but, unlike you may expect, the reversed is not necessarily true. This method returns 0, if, according to the rules for sorting, there is no difference, but there may still be differences (not relevant for sorting), which "equals" will care about.
Implemented in lout::object::Integer, lout::object::Boolean, lout::object::ConstString, dw::core::EmptyIterator, dw::core::TextIterator, dw::core::DeepIterator, dw::core::CharIterator, dw::oof::OOFAwareWidget::OOFAwareWidgetIterator, and dw::SimpleContainer::SimpleContainerIterator.
Referenced by dw::core::CharIterator::compareTo(), and dw::core::Iterator::equals().