哪些是相互 exclusive:Bit 字段或格式标志?在 C++ 中

Which are mutually exclusive:Bit fields or formatting flags? In c++

我正在阅读有关格式化标志和它们所属的组(称为位域)的内容,并且声明如下:-

there are three bit fields and each has a group of format flags which are mutually exclusive

所以我的问题是术语“互斥”是指格式标志还是位域?它实际上是什么意思? 谢谢!

该术语的意思是,如果您有一组条件或状态(实现并不重要),那么在任何时候只能'true'或设置其中一个。