list 等于12
#include <vector>
#include <list>
using namespace std;
typedef std::vector<char> VECTOR_CHAR;
typedef std::list<VECTOR_CHAR> VEC_LIST;
int _tmain(int argc, _TCHAR* argv[])
{
cout << sizeof(VEC_LIST) << endl;
system("PAUSE");
return 0;
}
为什么
浙公网安备 33010602011771号