해당 포스트는 cppreference.com을 참조해 작성했습니다. std::arraya container that encapsulates fixed size arrays.it doesn't decay to T* automatically.template struct array;std::vectora sequence container that encapsualteds dynamic size arrays.Except for std::vector partial specialization, the element are stored contiguously, which means that elements can be accessed not only through iterators, but also using off..