operator[]
at()
stable_sort
<list>
std::list<int> l; // 空 list
std::list<int> l(5); // 5 个默认值(int 为 0)
std::list<int> l(3, 99); // {99, 99, 99}