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;
}

  为什么

posted on 2022-01-24 01:54  lydstory  阅读(21)  评论(0)    收藏  举报

导航