C++設計的又一個缺陷——建構函式與解構函式名稱不應該用類名

來源:互聯網
上載者:User
C++設計的又一個缺陷,是否應該提交給C++標準委員會呢?——建構函式與解構函式名稱不應該用類名

如果用類名,那麼就是一個資訊冗餘

class test
{
    test();
    test(int,int,char *);
    test(...);
    ...
}

現在我要更改test為test2,就需要更改四個地方,維護困難。

class test2
{
    test2();
    test2(int,int,char *);
    test2(...);
    ...
}

解決方案:
引入一個關鍵字_init,做為建構函式的名字,
class test
{
    _init();
    _init(int,int,char *);
    _init(...);
    ...
}
現在要改名為test就只改一個地方就行了。
class test2
{
    _init();
    _init(int,int,char *);
    _init(...);
    ...
}

我的太極語言現在就可以這樣的,哈哈

還有解構函式呢?叫個什麼名字呢?
close,destroy,~_init,幫我想想吧。
還有_init叫成_begin怎麼樣?

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.