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

溫馨提示×

溫馨提示×

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

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

C++11 初始值{}與()的區別

發布時間:2020-03-01 16:35:01 來源:網絡 閱讀:346 作者:yaxinsn 欄目:系統運維

#include <stdio.h>
#include <stdlib.h>
using namespace std;
/*
 *  A1 類對象成員變量的默認值;
 *//B1 初始值列std::initializer_list
 * B2 使用初始值列initializer_list
 *
 *
 * */
class Hello{

        char* hello = 0;//A1 類對象成員變量的默認值;
public:
        ~Hello();
        Hello(const char* h);
        Hello(const char* h,const char* j);
        Hello(std::initializer_list<char*>);//B1 初始值列
        Hello(const Hello &obj);
};
Hello::Hello(const Hello &obj)
{
        cout <<"call copy constructor "<<endl;
        hello = strdup(obj.hello);
}
#if 1
Hello::Hello(const char* h)
{
        hello=strdup(h);
        cout <<__func__<<endl;

}
Hello::Hello(const char* h,const char* j)
{
        hello=strdup(h);
        cout <<__func__<<":" <<__LINE__<<" Hello(char* h,char* j)"<<endl;

}
Hello::Hello(std::initializer_list<char*> vals)
{
        char* x=(char*)vals.begin();
        hello=strdup(x);
        cout <<__func__<<":" <<__LINE__<<" Hello(std::initializer_list<const char*>)"<<endl;
}
#endif

#if 1
Hello::~Hello()
{
        if(this->hello)
                free(this->hello);
}

#endif

int main()
{
        int a{0};
        int b(0);
//      int c{0.3}; error 不可窄化
        int d(0.3);

        Hello H1("H1","H1");
        Hello H2{"H2","H2"}; //B2 使用初始值列initializer_list
        Hello H3{"H2","H2","XX"}; //使用初始值列initializer_list
        return 0;
}

總結:
int b(1.4)可以窄化與類型轉換。{}不可以。
初始化用戶自定義的類對象時,{}會優先使用initializer_list的構造函數。

向AI問一下細節

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

AI

东城区| 利津县| 兰溪市| 大宁县| 樟树市| 太保市| 彭州市| 随州市| 长海县| 伊通| 贺州市| 平泉县| 文安县| 汉源县| 浙江省| 广平县| 双峰县| 天镇县| 莒南县| 喜德县| 民勤县| 安达市| 泸州市| 马尔康县| 玉树县| 大同市| 太谷县| 榆树市| 鸡泽县| 印江| 墨脱县| 罗田县| 集贤县| 和田县| 汝南县| 定远县| 宁陕县| 平度市| 永济市| 微山县| 靖边县|