溫馨提示×

溫馨提示×

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

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

C++語言學(xué)習(xí)(五)——C++語言中的CV限定符錯誤

發(fā)布時間:2020-06-29 02:49:58 來源:網(wǎng)絡(luò) 閱讀:941 作者:天山老妖S 欄目:編程語言

C++語言學(xué)習(xí)(五)——C++語言中的CV限定符錯誤

?一、CV限定符錯誤簡介

1、CV限定符簡介

CV限定符即cv-qualifier,C++語言中指const和volatile限定符。
通常,C++語言中有兩種情況不能使用CV限定符進行限定:
A、非成員函數(shù)不能使用CV限定
B、靜態(tài)成員函數(shù)不能使用CV限定

2、CV限定符錯誤信息簡介

C++語言中CV限定符錯誤信息如“cannot have cv-qualifier”,常見的CV限定符錯誤信息如下:
A、非成員函數(shù)的CV限定符錯誤信息
error: non-member function 'xxxxxxxxx' cannot have cv-qualifier
B、靜態(tài)成員函數(shù)的CV限定符錯誤信息
error: static member function 'static xxxxxxx' cannot have cv-qualifier

二、C++語言的CV限定場合

1、非成員函數(shù)

在C++中,非成員函數(shù)不能含有CV限定,即const和volatile限定。

#include <iostream>

using namespace std;

double sum(double a, double b)const
{
    return a + b;
}
//error: non-member function 'double sum(double, double)' cannot have cv-qualifier

int main(int argc, char *argv[])
{
    double a = 3.14;
    double b = 2.0;
    double ret = sum(a, b);
    return 0;
}

上述代碼報錯,非成員函數(shù)sum不能使用const進行限定。

#include <iostream>

using namespace std;

double sum(double a, double b)volatile
{
    return a + b;
}
//error: non-member function 'double sum(double, double)' cannot have cv-qualifier

int main(int argc, char *argv[])
{
    double a = 3.14;
    double b = 2.0;
    double ret = sum(a, b);
    return 0;
}

上述代碼報錯,非成員函數(shù)sum不能使用volatile進行限定。
非成員函數(shù)不能使用const和volatile對函數(shù)進行限制,但在函數(shù)中或函數(shù)的返回值可以使用const和volatile進行限定。

#include <iostream>

using namespace std;

volatile double sum(double a, double b)
{
    volatile double c = a + b;
    return c;
}

int main(int argc, char *argv[])
{
    double a = 3.14;
    double b = 2.0;
    double ret = sum(a, b);
    return 0;
}

類的友元函數(shù)不是類的成員函數(shù),不能使用const和volatile對友元函數(shù)進行限制。

#include <iostream>

using namespace std;

class Test
{
private:
    static int data;
public:
    Test()
    {
        data++;
    }
    //靜態(tài)成員函數(shù)
    static int count()
    {
        return data;
    }
    friend int getValue()const;//error
    //error: non-member function 'int getValue()' cannot have cv-qualifier
    ~Test()
    {
        data--;
    }
};

int Test::data = 0;
//error: non-member function 'int getValue()' cannot have cv-qualifier
int getValue()const//error
{
    return Test::data;
}

int main(int argc, char *argv[])
{
    cout << Test::count() << endl;
    Test test;
    cout << test.count() << endl;
    return 0;
}

上述代碼報錯,類的友元函數(shù)getValue不能使用const和volatile進行限定。

2、靜態(tài)成員函數(shù)

在C++中,靜態(tài)成員函數(shù)不能有CV限定,即const和volatile限定。

#include <iostream>

using namespace std;

class Test
{
private:
    static int data;
public:
    Test()
    {
        data++;
    }
    //靜態(tài)成員函數(shù)
    static int count()const
    {
        return data;
    }
    //error: static member function 'static int Test::count()' cannot have cv-qualifier
    ~Test()
    {
        data--;
    }
};
int Test::data = 0;

int main(int argc, char *argv[])
{
    cout << Test::count() << endl;
    Test test;
    cout << test.count() << endl;
    return 0;
}

上述代碼報錯,類的靜態(tài)成員函數(shù)count不能使用const關(guān)鍵詞進行限定。

#include <iostream>

using namespace std;

class Test
{
private:
    static int data;
public:
    Test()
    {
        data++;
    }
    //靜態(tài)成員函數(shù)
    static int count()volatile
    {
        return data;
    }
    //error: static member function 'static int Test::count()' cannot have cv-qualifier
    ~Test()
    {
        data--;
    }
};
int Test::data = 0;

int main(int argc, char *argv[])
{
    cout << Test::count() << endl;
    Test test;
    cout << test.count() << endl;
    return 0;
}

上述代碼報錯,類的靜態(tài)成員函數(shù)count不能使用volatile關(guān)鍵詞進行限定。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI