#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; }
为什么
2023-09-28 19:10:52
#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; }
为什么