2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
8 // http://www.apache.org/licenses/LICENSE-2.0
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
19 * @brief This is the header file for the %Double class.
21 * @see Tizen::Base::Number
23 * This header file contains the declarations of the %Double class.
25 #ifndef _FBASE_DOUBLE_H_
26 #define _FBASE_DOUBLE_H_
28 #include <FBaseNumber.h>
30 namespace Tizen { namespace Base
34 * @brief This class is the wrapper class for the @c signed @c double built-in type.
38 * The %Double class is the wrapper class for the @c signed @c double built-in type.
40 * It represents a double-precision 64-bit number with values ranging from negative
41 * 1.79769313486232e308 to positive 1.79769313486232e308. This class is useful when passing a @c double
42 * value to a method expecting an instance of Object, such as Tizen::Base::Collection::Queue or
43 * Tizen::Base::Collection::Stack. Furthermore, this class provides methods for converting
44 * %Double (and @c double) to String, and String to %Double (and @c double).
46 * The following example demonstrates how to use the %Double class.
52 * using namespace Tizen::Base;
54 * // This method checks whether the given string object contains a string
55 * // representation of the pre-defined minimum double value.
57 * MyClass::Verify(const String& string, bool& out)
59 * static const Double MINIMUM(1.23L);
61 * result r = E_SUCCESS;
64 * r = Double::Parse(string, d);
70 * out = (MINIMUM.CompareTo(d) == 0) ? true: false;
78 class _OSP_EXPORT_ Double
83 * Initializes this instance of %Double with the specified value.
87 * @param[in] value A @c double value
89 Double(double value = 0.0L);
92 * Copying of objects using this copy constructor is allowed.
96 * @param[in] value An instance of %Double
98 Double(const Double& value);
101 * This destructor overrides Tizen::Base::Object::~Object().
105 virtual ~Double(void);
108 * Copying of objects using this copy assignment operator is allowed.
112 * @param[in] rhs An instance of %Double
114 Double& operator =(const Double& rhs);
117 * Compares two @c double values.
121 * @return A 32-bit @c signed integer value
123 * < 0 if the value of @c d1 is less than the value of @c d2
124 * == 0 if the value of @c d1 is equal to the value of @c d2
125 * > 0 if the value of @c d1 is greater than the value of @c d2
127 * @param[in] d1 The first @c double value to compare
128 * @param[in] d2 The second @c double value to compare
130 static int Compare(double d1, double d2);
133 * Compares the value of the current instance of %Double with the value of the specified @c signed @c double.
137 * @return A 32-bit @c signed integer value
139 * < 0 if the value of the current instance is less than the specified @c signed @c double
140 * == 0 if the value of the current instance is equal to the specified @c signed @c double
141 * > 0 if the value of the current instance is greater than the specified @c signed @c double
143 * @param[in] value A @c signed @c double value
145 int CompareTo(double value) const;
148 * Compares the value of the current instance of %Double with the value of the specified instance of %Double.
152 * @return A 32-bit @c signed integer value
154 * < 0 if the value of the current instance is less than the value of the specified instance
155 * == 0 if the value of the current instance is equal to the value of the specified instance
156 * > 0 if the value of the current instance is greater than the value of the specified instance
158 * @param[in] value An instance of %Double
160 int CompareTo(const Double& value) const;
163 * Checks whether the value of the specified instance of Object is equal to the value of the current instance of %Double.
167 * @return @c true if the value of the specified instance of %Object is equal to the value of the current instance of %Double, @n
169 * @param[in] obj An instance of Object to compare
170 * @see Tizen::Base::Object::Equals
172 virtual bool Equals(const Object& obj) const;
175 * Gets the hash value of the current instance of %Double.
179 * @return An integer value indicating the hash value of the current instance of %Double
180 * @remarks Two equal instances must return the same hash value. For better performance,
181 * the used hash function must generate a random distribution for all inputs. @n
182 * The default implementation of this method returns the value of the current instance.
184 virtual int GetHashCode(void) const;
187 * Gets the hash value of the specified @c double value.
191 * @return An integer value indicating the hash value of the specified @c double value
192 * @param[in] val A @c double value to get the hash value
194 static int GetHashCode(double val);
197 * Parses the specified string representing a numeric value and returns the value as @c signed @c double (as out parameter).
201 * @return An error code
202 * @param[in] s A unicode representation of @c signed @c double value
203 * @param[out] ret The converted numeric value
204 * @exception E_SUCCESS The method is successful.
205 * @exception E_NUM_FORMAT The specified string does not contain a number that can be parsed.
207 * - This method guarantees that the original value of out-parameter is not changed when the method returns error.
208 * - The behavior of this method is dependent on the system default locale setting.
210 static result Parse(const String& s, double& ret);
213 * Gets the @c signed @c char equivalent of the current instance of %Double.
217 * @return A @c signed @c char equivalent of the current instance
219 virtual char ToChar(void) const;
222 * Gets the @c signed @c short equivalent of the current instance of %Double.
226 * @return A @c signed @c short equivalent of the current instance
228 virtual short ToShort(void) const;
231 * Gets the @c signed @c int equivalent of the current instance of %Double.
235 * @return A @c signed @c int equivalent of the current instance
237 virtual int ToInt(void) const;
240 * Gets the @c signed @c long equivalent of the current instance of %Double.
244 * @return A @c signed @c long equivalent of the current instance
246 virtual long ToLong(void) const;
249 * Gets the @c signed @c long @c long equivalent of the current instance of %Double.
253 * @return A @c signed @c long @c long equivalent of the current instance
255 virtual long long ToLongLong(void) const;
258 * Gets the @c signed @c float equivalent of the current instance of %Double.
262 * @return A @c signed @c float equivalent of the current instance
264 virtual float ToFloat(void) const;
267 * Gets the @c signed @c double equivalent of the current instance of %Double.
271 * @return A @c signed @c double equivalent of the current instance
273 virtual double ToDouble(void) const;
276 * Gets the string representing the value of the current instance of %Double.
280 * @return A string containing a Unicode representation of the value of the current instance
282 * - If the value of the current instance is Not-a-Number (NaN), the result is the string "NaN". Furthermore, infinity
283 * produces the result "Infinity". @n
284 * 6 digits are given for the precision of this method. Use String::Format() to set the specific precision.
285 * - The behavior of this method is dependent on the system default locale setting.
287 virtual String ToString(void) const;
290 * Gets the string representing the specified @c double value.
294 * @return A string containing a Unicode representation of the specified @c double value
295 * @param[in] value A @c double value to convert
297 * - If the input value is Not-a-Number (NaN), the result is the string "NaN". Furthermore, infinity
298 * produces the result "Infinity". @n
299 * 6 digits are given for the precision of this method. Use String::Format() to set the specific precision.
300 * - The behavior of this method is dependent on the system default locale setting.
302 static String ToString(double value);
305 * Gets the IEEE 754 floating-point "double format" bit layout representation of the specified @c double value.
309 * @return The bits that represent the floating-point number in the IEEE 754 floating-point "double format" bit layout
310 * @param[in] value A @c double value to convert
312 static long long ToBits(double value);
315 * Gets the @c double value equivalent of the specified floating-point value represented in the IEEE 754 floating-point "double format" bit layout.
319 * @return The @c double floating-point value with the same bit pattern
320 * @param[in] value The floating-point value to convert
322 static double ToDoubleFromBits(long long value);
325 * Checks whether the current value of %Double is equal to negative or positive infinity.
329 * @return @c true if the current value equals negative or positive infinity, @n
332 bool IsInfinity(void) const;
335 * Checks whether the specified @c double value is equal to negative or positive infinity.
339 * @return @c true if the specified value equals negative or positive infinity, @n
341 * @param[in] value A @c double value to check
343 static bool IsInfinity(double value);
346 * Checks whether the current value is Not-a-Number.
350 * @return @c true if the current value is Not-a-Number, @n
353 bool IsNaN(void) const;
356 * Checks whether the specified value is Not-a-Number.
360 * @return @c true if the specified value is Not-a-Number, @n
362 * @param[in] value A @c double value to check
364 static bool IsNaN(double value);
367 * Gets a constant holding the largest positive finite value of type @c double. @n
368 * This is equal to the value defined in Limit.h of the C library.
372 * @return A constant holding the largest positive finite value of type @c double
374 static double GetMaxValue(void);
377 * Gets a constant holding the smallest positive non-zero value of type @c double. @n
378 * This is equal to the value defined in Limit.h of the C library.
382 * @return A constant holding the smallest possible non-zero value of type @c double
384 static double GetMinValue(void);
387 * A @c double value of this instance.
395 * Checks if the specified @c double value is finite.
399 * @return @c true if the specified value is finite, @n
401 * @param[in] value A @c double value to check
403 static bool IsFinite(double d);
405 static const int __DBL_MAX_10_EXP = 308;
407 friend class _DoubleImpl;
408 class _DoubleImpl* __pDoubleImpl;
412 #endif //_FBASE_DOUBLE_H_