Dillo v3.1.1-98-g318d1f14
|
An object::Object wrapper for int's. More...
#include <object.hh>
Public Member Functions | |
Integer (int value) | |
bool | equals (Object *other) |
Returns, whether two objects are equal. | |
int | hashValue () |
Return a hash value for the object. | |
void | intoStringBuffer (misc::StringBuffer *sb) |
Store a textual representation of the object in a misc::StringBuffer. | |
int | compareTo (Comparable *other) |
Compare two objects, this and other. | |
int | getValue () |
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 Object * | clone () |
Return an exact copy of the object. | |
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. | |
Private Attributes | |
int | value |
An object::Object wrapper for int's.
|
inline |
|
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.
Implements lout::object::Comparable.
Definition at line 210 of file object.cc.
References value.
|
virtual |
Returns, whether two objects are equal.
The caller should ensure, that this and the object have the same class; this makes casting of "other" safe. Typically, an implementation should check this == other first, the caller can assume a fast implementation.
Reimplemented from lout::object::Object.
Definition at line 193 of file object.cc.
References value.
|
inline |
|
virtual |
Return a hash value for the object.
Reimplemented from lout::object::Object.
Definition at line 198 of file object.cc.
References value.
|
virtual |
Store a textual representation of the object in a misc::StringBuffer.
This is used by object::Object::toString.
Reimplemented from lout::object::Object.
Definition at line 203 of file object.cc.
References lout::misc::StringBuffer::append(), and value.
|
private |
Definition at line 128 of file object.hh.
Referenced by compareTo(), equals(), getValue(), hashValue(), Integer(), and intoStringBuffer().