Why implicit conversion of bool to string isn't an error?

前端 未结 3 1637
失恋的感觉
失恋的感觉 2021-01-12 22:24

I goggled it & tried to find similar question on SO also but didn\'t find anything useful. So, posting my question here.

Consider this program:

#         


        
相关标签:
3条回答
  • 2021-01-12 22:28

    What happens is that an std::string is implicitly constructed from false, using the const CharT* overload and converting false to a null pointer. According to the documentation for that constructor :

    The behavior is undefined if s [the pointer] does not point at an array of at least Traits::length(s)+1 elements of CharT.

    Hence the malfunctioning (in the form of a friendly exception, but don't rely on it).

    Now, is it correct ? According to [conv.ptr] :

    A null pointer constant is an integer literal (2.13.2) with value zero or a prvalue of type std::nullptr_t.

    false has indeed a value of zero, but is not an integer literal (it's a boolean literal). The implicit conversion to the CharT* that std::string's constructor takes is thus non-standard.

    And indeed, while GCC emits a warning, Clang refuses to compile it.

    0 讨论(0)
  • 2021-01-12 22:40

    Before C++11 introduced the nullptr keyword, null pointers were a bit of a hack. Any integer literal equal to zero would suffice as a null pointer constant, and false fit the bill.

    So, the effect of your program is to construct the std::string with a char const * argument of NULL. The constructor doesn't support null pointers, so you get undefined behavior.

    The solution to this problem is to use a newer dialect of C++. Pass -std=c++11 to the compiler if necessary, or -std=c++14. Then you should get something like this:

    error: no matching function for call to 'foo'
    

    http://coliru.stacked-crooked.com/a/7f3048229a1d0e5a

    EDIT: Hmm, GCC doesn't appear to implement this change yet. That's a bit surprising. You might try Clang.

    I've filed a bug report.

    0 讨论(0)
  • 2021-01-12 22:47

    A bool is basically an integer so it will be interpreted as a zero ,in your case it is probablly the 0 character and this will cause that problem the string will an exception

    0 讨论(0)
提交回复
热议问题