list 等于12


#include 
#include 
using namespace std;
typedef std::vector VECTOR_CHAR;
typedef std::list VEC_LIST;

int _tmain(int argc, _TCHAR* argv[])
{
 
	cout << sizeof(VEC_LIST) << endl;
	system("PAUSE");
	return 0;
}

  为什么