6

I have written the following source

#include <iostream>
using namespace std;

template <class T>
class AAA
{
public:
    void f() { cout << T() << " "; }
};

int main ( void )
{
    AAA<int*> a;
    AAA<int> b;

    a.f(); /// in this case, T() == NULL??
    b.f(); 

    return 0;
}

and console print is 00000000 0. ( in visual studio 2010 )

if T is int*, T() == NULL? and is it always true?

4

3 回答 3

9

这称为值初始化,您是有保证的0

另外,您不需要如此复杂的示例来演示:

typedef int* T;
int main()
{
   T x = T();
   std::cout << x;
}
于 2012-08-04T17:33:59.510 回答
8

是的。值初始化的指针始终为空。

于 2012-08-04T17:32:45.640 回答
0

是的。它是空指针。以及为什么要打印:

00000000

因为它使用 4 字节来表示空地址(以十六进制格式)。

在 64 位机器上,它可能会打印这个(十六进制格式):

0000000000000000
于 2012-08-04T17:33:54.937 回答