這篇文章主要講解了“C語言中函數(shù)參數(shù)的省略號(hào)有什么用”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“C語言中函數(shù)參數(shù)的省略號(hào)有什么用”吧!
創(chuàng)新互聯(lián)建站于2013年開始,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站制作、網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元榕城做網(wǎng)站,已為上家服務(wù),為榕城各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18982081108C++允許定義形參個(gè)數(shù)和類型不確定的函數(shù)。例如,C語言中的標(biāo)準(zhǔn)函數(shù)printf便使用這種機(jī)制。在聲明不確定形參的函數(shù)時(shí),形參部分可以使用省略號(hào)“…”代替?!啊备嬖V編譯器,在函數(shù)調(diào)用時(shí)不檢查形參類型是否與實(shí)參類型相同,也不檢查參數(shù)個(gè)數(shù)。
例如:
void ConnectData(int i,...)
在上面的代碼中,編譯器只檢查第一個(gè)參數(shù)是否為整型,而不對(duì)其他參數(shù)進(jìn)行檢查。
對(duì)于可變參數(shù)的函數(shù),需要進(jìn)行特殊的處理。首先需要引用
這幾個(gè)宏的定義如下(在 ANSI C 中):
type va_arg( va_list arg_ptr, type );
void va_end( va_list arg_ptr );
void va_start( va_list arg_ptr, prev_param );
說明如下:
va_start
sets arg_ptr to the first optional argument in the list of arguments passed to the function. The argument arg_ptr must have va_list type. The argument
prev_param is the name of the required parameter immediately preceding the first optional argument in the argument list. If prev_param is declared with the register storage class, the macro’s behavior is undefined. va_start must be used before va_arg is used
for the first time.
【 va_start函數(shù)將參數(shù)arg_ptr設(shè)置為可變參數(shù)列表的第一個(gè)參數(shù)。參數(shù)arg_ptr的類型必須為va_list。參數(shù)prev_param是在可變參數(shù)列表之前的那一個(gè)參數(shù)。(也就是說在
ANSI C 中,如果一個(gè)函數(shù)有可變參數(shù),那么在該可變參數(shù)前必須有一個(gè)明確定義的參數(shù),否則無法調(diào)用函數(shù) va_start ,例如函數(shù) int add(int i,...)是合法的,而函數(shù) int add(...)是不合法的。)】
va_arg
retrieves a value of type from the location given by arg_ptr and increments arg_ptr to point to the next argument in the list, using the size of type
to determine where the next argument starts. va_arg can be used any number of times within the function to retrieve arguments from the list.
【 va_arg函數(shù)將返回 arg_ptr 所指位置的值,并將 arg_ptr 指向下一個(gè)參數(shù) 】
va_end
After all arguments have been retrieved, va_end resets the pointer to NULL.
示例代碼:
#include
#include
using namespace std;
int add(int pre,...) //求和函數(shù)
{
va_list arg_ptr;
int sum=0;
int nArgValue;
sum+=pre;
va_start(arg_ptr,pre);
do
{
nArgValue=va_arg(arg_ptr,int);
sum+=nArgValue;
}while(nArgValue!=0); //自定義結(jié)束條件是輸入?yún)?shù)為0
va_end(arg_ptr);
return sum;
}
int main()
{
cout<
}
感謝各位的閱讀,以上就是“C語言中函數(shù)參數(shù)的省略號(hào)有什么用”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)C語言中函數(shù)參數(shù)的省略號(hào)有什么用這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!