91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++函數與指針是什么

發布時間:2021-01-22 14:36:31 來源:億速云 閱讀:125 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關C++函數與指針是什么的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

From C++ Primer Plus: Chapter 7 Function:C++ Programming Modules

1. 如何聲明函數指針?

和函數原型類似: 需要聲明指針指向函數的返回值和參數列表

double pam(int); //參數為int 類型,返回值為double 類型的函數
double (*pf);(int)  //指向參數為int類型,返回值為double 類型的指針
pf = pam;   //函數名代表了函數的地址

double x = pam(4); //函數名調用
double x = (*pf)(4); //指針調用
double x = pf(4); //C++也允許將指針名當作函數名使用

2. C++ 11 自動類型推斷

 const double * f1(const double *, int);
 const double * (*p1)(const double *, int); //p1 poitns to f1
 auto p2 = f1; //C++11 automatic type deduction,p2 points to f1 as well

3. 將指針名當作函數名使用

//前面函數為double *類型,cout第一部分返回double指針,第二部分返回double指針指向的值
cout<<(*p1)(av,3)<<":"<<*(*p1)(av,3)<<endl;
//和上面的cout一樣只不過是使用函數指針名來調用函數
cout<<p2(av,3)<<":"<<*p2(av,3)<<endl;

4.  函數指針數組

const double *(*pa[3]) (const double *,int) = {f1,f2,f3}; //創建函數指針數組
//通過指針調用函數,得到返回的指針
const double *px = pa[0](av,3); //call by pointer as if it were a function name
const double *py = (*pa[0])(av,3); //正常調用

//得到函數返回指針指向的值
double x = *pa[0](av,3);
double x = *(*pa[0])(av,3);

5. 指向指針數組的指針

指針數組和數組指針的區別

*pd[3] //an array of 3 pointers
(*pd)[3] //a pointer to an array of three elements

指向數組的指針


1 auto pc = &pa;   //&pa是整個數組的地址, pa是數組第一個元素首地址

2

3 const double * (*(*pd)[3])(const double *,  int ) = &pa; //和第一個等價

4

5 **&pa = *pa = pa[0]

代碼:

//arfupt.cpp -- an array of function pointers
#include<iostream>
//various notations,same signatures
const double *f1(const double ar[],int n);
const double *f2(const double [],int);
const double *f3(const double *,int);

int main()
{
    using namespace std;
    double av[3] = {1112.3,1542.6,2227.9};

    //pointer to a function

    const double *(*p1)(const double *,int) = f1;
    auto p2 = f2;//C++ 11 utomatic  type deduction
    //pre-C++11 can use the following code instead
    //const double *(*p2)(const double *,int) = f2;
    cout<<"Using pointers to functions:\n";
    cout<<"Address Value\n";
    cout<<(*p1)(av,3)<<":"<<*(*p1)(av,3)<<endl;
    cout<<p2(av,3)<<":"<<*p2(av,3)<<endl;

    //pa an array of pointers
    //auto doesn't work with list initialization
    const double *(*pa[3])(const double *,int) = {f1,f2,f3};
    //pb a pointer to first element of pa
    auto pb = pa;
    // pre-C++11 can use the following code instead
    // const double *(**pb)(const double *, int) = pa;
    cout<<"\nUsing an array of pointers to functions:\n";
    cout<<"Address Value\n";
    for(int i = 0;i < 3; i++)
        cout<<pa[i](av,3)<<":"<<*pa[i](av,3)<<endl;
    cout<<"\nUsing a pointer to a pointer to a function:\n";
    cout<<"Address Value\n";
    for(int i = 0;i < 3; i++)
        cout<<pb[i](av,3)<<":"<<*pb[i](av,3)<<endl;

    //what about a pointer to an array of function pointers
    cout<<"\nUsing pointers to an array of pointers:\n";
    cout<<"Address Value\n";
    //easy way to declare pc
    auto pc = &pa;
    // pre-C++11 can use the following code instead
    // const double *(*(*pc)[3])(const double *, int) = &pa;
    cout<<(*pc)[0](av,3)<<":"<<*(*pc)[0](av,3)<<endl;
    //hard way to declare pd
    const double *(*(*pd)[3])(const double *,int) = &pa;
    //store return value in pdb
    const double *pdb = (*pd)[1](av,3);
    cout<<pdb<<":"<<*pdb<<endl;
    //alternative notation
    cout<<(*(pd)[2])(av,3)<<":"<<*(*(*pd)[2])(av,3)<<endl;
}

const double * f1(const double * ar, int n)
{
return ar;
}
const double * f2(const double ar[], int n)
{
return ar+1;
}
const double * f3(const double ar[], int n)
{
return ar+2;
}

感謝各位的閱讀!關于“C++函數與指針是什么”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

建阳市| 通渭县| 颍上县| 云和县| 琼海市| 营口市| 五原县| 太原市| 和政县| 泗洪县| 临海市| 辰溪县| 烟台市| 曲麻莱县| 赞皇县| 泰宁县| 斗六市| 光山县| 正阳县| 肇源县| 沙雅县| 沅陵县| 鄂伦春自治旗| 通辽市| 白河县| 沁水县| 临沭县| 长兴县| 岳普湖县| 大理市| 朝阳县| 明溪县| 雷波县| 遂平县| 宁城县| 平安县| 昌都县| 含山县| 永平县| 临江市| 个旧市|