c++ - ~int(),里边会做些什么,网上没找到资料
PHP中文网
PHP中文网 2017-04-17 15:38:43
0
1
580
#include<iostream>
#include<array>

using namespace std;

template<typename T>
void des(T * pointer)
{
    pointer->~T();
}


int main()
{
    
    int * p = new int[8];
    for (int i = 0; i < 8; i++)
        *(p + i) = i;
    
    des(p + 3);
    
    for (int i = 0; i < 8; i++)
        cout << *(p + i) << endl;//0 1 2 3 4 5 6 7

    return 0;
}

这是我的测试,函数必须使用模板,如果去掉模板,以int代替T的话,根本无法运行,所以这里我想问两个问题:
(1)~int()是什么?
(2)为什么用模板就可以正确运行?

PHP中文网
PHP中文网

认证高级PHP讲师

全員に返信(1)
洪涛

http://stackoverflow.com/ques...

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!