search

Home  >  Q&A  >  body text

xcode - c++中关于boolalpha用法问题

关于boolalpha,我知道它可以将布尔类型以true或者false输出。
例如 :

bool x = ture;
cout << boolalpha << x << endl;

那么会输出true;
然而在xcode输出时会联想到这个函数

boolalpha(<#std::ios_base &__str#>)

这个是什么意思呢?

高洛峰高洛峰2807 days ago572

reply all(1)I'll reply

  • 怪我咯

    怪我咯2017-04-17 15:18:27

    std::boolalpha itself is a function, call ios_base::setf

    streamReloadoperator<< (std::ios_base& (*func)(std::ios_base&)).

    If it is not made into a function, it needs to be written like this, because setf returns fmtflags, not stream

    cout.setf(ios_base::boolalpha);
    cout << x << endl;

    reply
    0
  • Cancelreply