찾다

 >  Q&A  >  본문

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

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

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

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

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

这个是什么意思呢?

高洛峰高洛峰2803일 전564

모든 응답(1)나는 대답할 것이다

  • 怪我咯

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

    std::boolalpha 자체가 함수이므로 ios_base::setf

    을 호출하세요.

    stream새로고침operator<< (std::ios_base& (*func)(std::ios_base&)).

    함수로 만들지 않는다면 setf는 fmtflagsstream이 아닌

    을 반환하기 때문에 이렇게 작성해야 합니다. 으아악

    회신하다
    0
  • 취소회신하다