System::TypeInfo::operator!= 方法

TypeInfo::operator!=(const TypeInfo&) const method

确定当前的和指定的 TypeInfo 对象是否不相等。

bool System::TypeInfo::operator!=(const TypeInfo &info) const
参数类型描述
infoconst TypeInfo&要比较的 TypeInfo 对象

ReturnValue

如果对象的哈希值不相等则为真,否则为假

另见

TypeInfo::operator!=(std::nullptr_t) const method

确定当前 TypeInfo 对象是否不是空对象,即它代表某种类型。

bool System::TypeInfo::operator!=(std::nullptr_t) const

ReturnValue

如果当前 TypeInfo 对象不是空对象则为真,否则为假

另见