What is numeric promotion?

前端 未结 4 411
抹茶落季
抹茶落季 2020-12-11 15:48

Can any one tell what is numeric promotion?

4条回答
  •  半阙折子戏
    2020-12-11 16:16

    Numeric promotion is the conversion of a smaller numeric type to a larger numeric type, so that integer and floating-point operations may take place. In numerical promotion, byte, char, and short values are converted to int values. The int values are also converted to long values, if necessary. The long and float values are converted to double values, as required.

提交回复
热议问题