wxLongLongThis class represents a signed 64 bit long number. It is implemented using the native 64 bit type where available (machines with 64 bit longs or compilers which have (an analog of) long long type) and uses the emulation code in the other cases which ensures that it is the most efficient solution for working with 64 bit integers independently of the architecture. wxLongLong defines all usual arithmetic operations such as addition, subtraction, bitwise shifts and logical operations as well as multiplication and division (not yet for the machines without native long long). It also has operators for implicit construction from and conversion to the native long long type if it exists and long. You would usually use this type in exactly the same manner as any other (built-in) arithmetic type. Note that wxLongLong is a signed type, if you want unsigned values use wxULongLong which has exactly the same API as wxLongLong except when explicitly mentioned otherwise. If a native (i.e. supported directly by the compiler) 64 bit integer type was found to exist, wxLongLong_t macro will be defined to correspond to it. Also, in this case only, two additional macros will be defined: wxLongLongFmtSpec for printing 64 bit integers using the standard printf() function (but see also ToString() for a more portable solution) and wxLL for defining 64 bit integer compile-time constants. Derived from No base class Include files <wx/longlong.h> Members
wxLongLong::wxLongLong
wxLongLong::wxLongLongwxLongLong() Default constructor initializes the object to 0.
wxLongLong::wxLongLongwxLongLong(wxLongLong_t ll) Constructor from native long long (only for compilers supporting it).
wxLongLong::wxLongLongwxLongLong(long hi, unsigned long lo) Constructor from 2 longs: the high and low part are combined into one wxLongLong.
wxLongLong::operator=wxLongLong& operator operator=(wxLongLong_t ll) Assignment operator from native long long (only for compilers supporting it).
wxLongLong::operator=wxLongLong& operator operator=(wxULongLong_t ll) Assignment operator from native unsigned long long (only for compilers supporting it). This function is new since wxWidgets version 2.7.0
wxLongLong::operator=wxLongLong& operator operator=(long l) Assignment operator from long. This function is new since wxWidgets version 2.7.0
wxLongLong::operator=wxLongLong& operator operator=(unsigned long l) Assignment operator from unsigned long. This function is new since wxWidgets version 2.7.0
wxLongLong::operator=wxLongLong& operator operator=(const wxULongLong & ll) Assignment operator from unsigned long long. The sign bit will be copied too. This function is new since wxWidgets version 2.7.0
wxLongLong::AbswxLongLong Abs() const wxLongLong& Abs() Returns an absolute value of wxLongLong - either making a copy (const version) or modifying it in place (the second one). Not in wxULongLong.
wxLongLong::AssignwxLongLong& Assign(double d) This allows to convert a double value to wxLongLong type. Such conversion is not always possible in which case the result will be silently truncated in a platform-dependent way. Not in wxULongLong.
wxLongLong::GetHilong GetHi() const Returns the high 32 bits of 64 bit integer.
wxLongLong::GetLounsigned long GetLo() const Returns the low 32 bits of 64 bit integer.
wxLongLong::GetValuewxLongLong_t GetValue() const Convert to native long long (only for compilers supporting it)
wxLongLong::ToDoubledouble ToDouble() const Returns the value as double.
wxLongLong::ToLonglong ToLong() const Truncate wxLongLong to long. If the conversion loses data (i.e. the wxLongLong value is outside the range of built-in long type), an assert will be triggered in debug mode.
wxLongLong::ToStringwxString ToString() const Returns the string representation of a wxLongLong.
wxLongLong::operator+wxLongLong operator+(const wxLongLong& ll) const Adds 2 wxLongLongs together and returns the result.
wxLongLong::operator+=wxLongLong& operator+(const wxLongLong& ll) Add another wxLongLong to this one.
wxLongLong::operator++wxLongLong& operator++() wxLongLong& operator++(int) Pre/post increment operator.
wxLongLong::operator-wxLongLong operator-() const Returns the value of this wxLongLong with opposite sign. Not in wxULongLong.
wxLongLong::operator-wxLongLong operator-(const wxLongLong& ll) const Subtracts 2 wxLongLongs and returns the result.
wxLongLong::operator-=wxLongLong& operator-(const wxLongLong& ll) Subtracts another wxLongLong from this one.
wxLongLong::operator--wxLongLong& operator--() wxLongLong& operator--(int) Pre/post decrement operator.
|