亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

NULL與""空字符串的區別

發布時間:2020-07-07 06:32:39 來源:網絡 閱讀:1349 作者:XDATAPLUS 欄目:編程語言

""空字符串,會創建一個對象,分配內存空間

NULL,不會創建對象,不會分配內存空間,意思是不存在的


#include <iostream>
using namespace std;

int main()
{
        std::string strTemp;

        if( strTemp.empty() )
        {
                cout<<"is empty "<<endl;
        }
        else
        {
                cout<<"is not empty"<<endl;
        }

        strTemp = "";

        if( strTemp.empty() )
        {
                cout<<"is empty"<<endl;
        }
        else
        {
                cout<<"is not empty"<<endl;
        }

        if( strTemp == "" )
        {
                cout<<"is empty"<<endl;
        }
        else
        {
                cout<<"is not empty"<<endl;
        }

        /*
        if( strTemp == NULL )
        {
                cout<<"is empty"<<endl;
        }
        else
        {
                cout<<"is not empty"<<endl;
        }
        */

        return 0;
}

在以下代碼最后,用NULL與字符類型進行比較,會直接導致編譯錯誤!

test.cpp:37:17: error: no match for ‘operator==’ in ‘strTemp == 0’

從編譯的錯誤提示看:NULL為數值0


#include <iostream>
using namespace std;

int main()
{
        if( NULL == 0 )
        {
                cout<<"NULL is number 0"<<endl;
        }
        else
        {
                cout<<"NULL is not number 0"<<endl;
        }

        int nNum;
        cout<<"nNUm = "<<nNum<<endl;

        nNum = NULL;
        cout<<"nNUm = "<<nNum<<endl;

        cout<<static_cast<void*>(NULL)<<endl;

        return 0;
}

從這段代碼,進一步驗證了,NULL對就的值為數值0,地址為空

注意:將NULL賦值為int變量時會報警告

NULL.cpp:18:9: warning: converting to non-pointer type ‘int’ from NULL [-Wconversion-null]

向AI問一下細節

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

AI

昌邑市| 交口县| 商水县| 桐柏县| 锦屏县| 琼海市| 瑞安市| 罗田县| 出国| 岑溪市| 无锡市| 忻州市| 苍溪县| 嵊州市| 健康| 广昌县| 成都市| 无锡市| 古丈县| 靖远县| 六安市| 岱山县| 常山县| 扎赉特旗| 浙江省| 逊克县| 瑞安市| 海阳市| 台前县| 普陀区| 巴彦淖尔市| 和龙市| 闽清县| 宜君县| 汝城县| 清河县| 普格县| 宁安市| 桃源县| 拉孜县| 体育|