I am using VariantCopyInd . The source contains 1111.199999999. However after VariantCopyInd the value gets rounded off in the destination as 1111.200000. I would like to retain the original value . how can this be achieved ?

link|improve this question

56% accept rate
Post code that reproduces this problem. – Hans Passant Nov 30 '11 at 13:59
feedback

2 Answers

This has nothing to do with VariantCopyInd, but merely the fact that the literal as it exists in the code, has not exact representation in the floating point format used internally by COM Variants.

Therefore, there is no way to achieve what you want, except to use the CURRENCY type of variant. It will have limited precision, see MSDN:

CURRENCY types use a decimal representation internally, just like the code literal. You will still have to provide an indirect initialization (from string, not a float/double literal) in code, to prevent any unwanted representation effects.

A currency number stored as an 8-byte, two's complement integer, scaled by 10,000 to give a fixed-point number with 15 digits to the left of the decimal point and 4 digits to the right. This IDispatch::GetTypeInforesentation provides a range of 922337203685477.5807 to -922337203685477.5808.

The CURRENCY data type is useful for calculations involving money, or for any fixed-point calculation where accuracy is particularly important.

link|improve this answer
its a CComVariant – sameer karjatkar Nov 30 '11 at 10:56
@sameerkarjatkar: I understand. CComVariant is also just (a wrapper for) VARIANT. Updated my answer with my best hint: use currency (which uses decimal representation internally) – sehe Nov 30 '11 at 10:59
is it possible to cast from VARIANT to CURRENCY ? – sameer karjatkar Nov 30 '11 at 11:13
@sameerkarjatkar: By definition, a VARIANT is a discriminated union. If you store a CURRENCY value in a VARIANT no casting is involved. To use the value in double arithmetics you could use (double) dblVariant.cyVal.int64 / 10000.0. No doubt, CComVariant has getters for this - but MSDN is at your disposal too – sehe Nov 30 '11 at 11:46
feedback
up vote -1 down vote accepted

I found a very good link from msdn

enter link description here The link clearly indicates any number whose length is greater than 15 will evaluate into incorrect results .

Take 2 cases

1) 101126.199999999 will store a correct value , since the length is 15 . No conversion or precision loss 2) 111.12345678912345 will store incorrect value since the length is 17 . Conversion will be done

link|improve this answer
Unfortunately you missed the essential point: the page also mentions that might not exactly approximate the decimal number and A value might not roundtrip if a floating-point number is involved. This has nothing to do with decimal significant digits (in fact, the sample from the OP is less than 15 digits). – sehe Nov 30 '11 at 12:54
Oh. Also, the linked article doesn't even apply because it is not about .NET or even CLR. (You can expect the internal representation to be the same IEEE floating point standard, but that is not explicitely mentioned) – sehe Nov 30 '11 at 12:57
@sehe probably my question is not correct . Do you say that a floating point number of length 15 can also loose its precision or will get converted ? – sameer karjatkar Dec 1 '11 at 5:32
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.