// Examples of member types of list. #include #include #include int main(){ using namespace std; list lc; lc.push_back('a'); lc.push_back('b'); lc.push_back('e'); list::value_type x = 'c'; // A complicated way to denote the type char list::iterator lc_it = lc.begin(); // The iterator type of list list::size_type sz = lc.size(); // The size type of list }