不修改序列的操作 ---------- all_of, any_of , none_of 定义于头文件 <algorithm> all_of 检查谓词pred是否对范围中所有元素为 true template <class InputIterator, class UnaryPredicate> bool all_of (InputIterator first, InputIterator last, UnaryPredicate pred); (函数模板) ...