![]() | I/O Format Specifiers for Writing Floating-Point Numbers |
A floating point argument has a format specifier of the following form:
%[flags] [488.2 type] [width] [.precision] [delimiter [array size] ] [$S] [l | L] [f | e | E | g | G]
Modifier | Interpretation |
---|---|
Default Functionality | The argument is formatted as a floating point number in NR2 format (a number with at least one digit after the decimal point). |
flags +, -, 0 | Controls justification and padding of the output, as follows:
|
488.2 type | The number is formatted in one of six standard IEEE 488.2 numeric formats. The supported formats are:
|
width | Minimum field width of the output number. An asterisk (*) may be present in lieu of an integer width modifier, in which case an extra int argument supplies the value. |
precision | Maximum number of digits after the decimal point for %f, %e, %E. Maximum number of significant digits for %g, %G. An asterisk (*) may be present in lieu of an integer precision modifier, in which case an extra int argument supplies the value. |
delimiter [array size] | The argument is interpreted as an array of floats (or double or long double, as specified by the length). If the $S modifier is present, the argument is interpreted as a SAFEARRAY of floating-point numbers. array size specifies the number of array elements to send. An asterisk (*) may be present in lieu of an integer array size modifier, in which case an extra int argument supplies the value. |
$S | The argument is interpreted as a SAFEARRAY of floating-point numbers. |
length modifier |
|
type |
|
HRESULT hr = S_OK; double dRange = 300; // Default precision is 6, "l" modifier promotes to a double hr = io.Printf(_T("%lf"), dRange); // Sends "300.000000" // Specify width of 4, but required length is greater hr = io.Printf(_T("%4.2lf"), dRange); // Sends "300.00" // Width requires padding hr = io.Printf(_T("%8.2lf"), dRange); // Sends " 300.00" // Exponential notation hr = io.Printf(_T("%8.2le"), dRange); // Sends "3.00e+02" // Supply field width using a variable int nWidth = 8; hr = io.Printf(_T("%*.2le"), nWidth, dRange); // Sends "3.00e+02" // Supply field width and precision using variables int nPrecision = 2; hr = io.Printf(_T("%*.*le"), nWidth, nPrecision, dRange); // Sends "3.00e+02"
HRESULT hr = S_OK; double rgData[] = { 1.1, 1.2, 1.3, 1.4, 1.5 }; // Comma-separated list of 3 elements hr = io.Printf(_T("%4.2,3lf"), rgData); // Sends "1.10,1.20,1.30" // Semi-colon separated, count supplied as a variable int nCount = 4; hr = io.Printf(_T("%3.2(;)*le"), nCount, rgData); // Sends "1.10e+00;1.20e+00;1.30e+00;1.40e+00" CComSafeArray<double> saData; saData.Add(1.1); saData.Add(1.2); saData.Add(1.3); // Comma-separated list. Argument is a SAFEARRAY. // No field width supplied, so count is determined from the SAFEARRAY itself. hr = io.Printf(_T("%4.2,$Slf"), rgData); // Sends "1.10,1.20,1.30"