表示该向量中都保存的是content类的指针.
例如: content obj;
content* pobj = &obj;
contents.push_back(pobj);
表示把一个指向obj的指针pobj压入堆栈contents中.