Argumenty domyślne
W wielu przypadkach funkcje mają argumenty, które są używane tak rzadko, że wartość domyślna będzie wystarczające.Ten instrument argumentu domyślnego umożliwia określanie tylko tych argumentów dla funkcji, które mają znaczenie w danym zaproszeniu.Aby zilustrować tę koncepcję, rozważmy przykład przedstawione w Przeciążanie funkcji.
// Prototype three print functions.
int print( char *s ); // Print a string.
int print( double dvalue ); // Print a double.
int print( double dvalue, int prec ); // Print a double with a
// given precision.
W wielu aplikacjach uzasadnione domyślne mogą być dostarczone dla prec, eliminując potrzebę dwie funkcje:
// Prototype two print functions.
int print( char *s ); // Print a string.
int print( double dvalue, int prec=2 ); // Print a double with a
// given precision.
Wykonania print funkcja jest nieznacznie zmienione w celu odzwierciedlenia faktu, że tylko jedna taka funkcja nie istnieje dla typu double:
// default_arguments.cpp
// compile with: /EHsc /c
// Print a double in specified precision.
// Positive numbers for precision indicate how many digits
// precision after the decimal point to show. Negative
// numbers for precision indicate where to round the number
// to the left of the decimal point.
#include <iostream>
#include <math.h>
using namespace std;
int print( double dvalue, int prec ) {
// Use table-lookup for rounding/truncation.
static const double rgPow10[] = {
10E-7, 10E-6, 10E-5, 10E-4, 10E-3, 10E-2, 10E-1, 10E0,
10E1, 10E2, 10E3, 10E4, 10E5, 10E6
};
const int iPowZero = 6;
// If precision out of range, just print the number.
if( prec >= -6 && prec <= 7 )
// Scale, truncate, then rescale.
dvalue = floor( dvalue / rgPow10[iPowZero - prec] ) *
rgPow10[iPowZero - prec];
cout << dvalue << endl;
return cout.good();
}
Aby wywołać nowy print działać, należy użyć kodu, takie jak następujące:
print( d ); // Precision of 2 supplied by default argument.
print( d, 0 ); // Override default argument to achieve other
// results.
Uwaga te punkty, podczas korzystania z domyślnego argumenty:
Argumenty domyślne są używane tylko w wywołania funkcji, gdzie pominięto argumenty końcowe — muszą one być ostatnim argumenty.W związku z tym następujący kod jest nielegalne:
int print( double dvalue = 0.0, int prec );
Argument domyślny nie można ponownie zdefiniować w deklaracjach później, nawet jeśli ponowne zdefiniowanie jest identyczna z oryginałem.W związku z tym poniższy kod generuje błąd:
// Prototype for print function. int print( double dvalue, int prec = 2 ); ... // Definition for print function. int print( double dvalue, int prec = 2 ) { ... }
Problem z tym kodem jest deklaracja funkcji w definicji nowo definiuje pojęcie argument domyślny dla prec.
Domyślne dodatkowe argumenty mogą być dodawane przez deklaracje później.
Argumenty domyślne można przewidzianych w wskaźników do funkcji.Na przykład:
int (*pShowIntVal)( int i = 0 );