Unary plus (+) against literal string

岁酱吖の 提交于 2019-11-27 06:41:09

问题


Today I wrote an expression:

"<" + message_id + "@" +  + ">"
                          ^
                          |
                          \____  see that extra '+' here!

and got surprised that it actually compiled. (PS message_id is a QString, it would also work with an std::string)

I often do things like that, leave out a variable as I'm working and I expect the compiler to tell me where I'm still missing entries. The final would look something like this:

"<" + message_id + "@" + network_domain + ">"

Now I'd like to know why the + unary operator is valid against a string literal!?


回答1:


Unary + can be applied to arithmetic type values, unscoped enumeration values and pointer values because ...

the C++ standard defines it that way, in C++11 §5.3.1/7.

In this case the string literal, which is of type array of char const, decays to pointer to char const.

It's always a good idea to look at the documentation when one wonders about the functionality of something.


“The operand of the unary + operator shall have arithmetic, unscoped enumeration, or pointer type and the result is the value of the argument. Integral promotion is performed on integral or enumeration operands. The type of the result is the type of the promoted operand.”



来源:https://stackoverflow.com/questions/20439442/unary-plus-against-literal-string

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!