operator!= (<forward_list>)
测试,如果运算符左侧的正向列表对象与右侧的正向列表对象不等于。
bool operator!=(
const forward_list <Type, Allocator>& _Left,
const forward_list <Type, Allocator>& _Right
);
参数
参数 |
说明 |
---|---|
_Left |
forward_list 类型的对象。 |
_Right |
forward_list 类型的对象。 |
返回值
true 列表,则不相等;false 列表,则为相等。
备注
此模板函数返回 !(_Left == _Right)。
要求
标头: <forward_list>
命名空间: std