How to write an unsigned short int literal?

后端 未结 9 1399
慢半拍i
慢半拍i 2021-01-07 15:53

42 as unsigned int is well defined as \"42U\".

unsigned int foo = 42U; // yeah!

How can I write \"23\" so that it is clear it is an

9条回答
  •  鱼传尺愫
    2021-01-07 16:37

    You can't. Numeric literals cannot have short or unsigned short type.

    Of course in order to assign to bar, the value of the literal is implicitly converted to unsigned short. In your first sample code, you could make that conversion explicit with a cast, but I think it's pretty obvious already what conversion will take place. Casting is potentially worse, since with some compilers it will quell any warnings that would be issued if the literal value is outside the range of an unsigned short. Then again, if you want to use such a value for a good reason, then quelling the warnings is good.

    In the example in your edit, where it happens to be a template function rather than an overloaded function, you do have an alternative to a cast: do_something(23). With an overloaded function, you could still avoid a cast with:

    void (*f)(unsigned short) = &do_something;
    f(23);
    

    ... but I don't advise it. If nothing else, this only works if the unsigned short version actually exists, whereas a call with the cast performs the usual overload resolution to find the most compatible version available.

提交回复
热议问题