“谓词特性”是一个基于类型某些特征的布尔值。C++ 为各种这些特征提供了许多内置的“虚拟模板”(例如,std::is_floating_point<int>::value 在编译时解析为 false)。
std::is_floating_point<int>::value
false
关于一元谓词特性的更多信息(包括交互式示例)