Short way to write conditional assignment in ObjC

后端 未结 2 942
不思量自难忘°
不思量自难忘° 2020-12-14 07:06

Does Objective-C have an even shorter way of writing this line of code?

 a = b ? b : c;

That is, a way to say, a is equal to <

2条回答
  •  太阳男子
    2020-12-14 07:49

    Does the following work for you:

    a = b ? : c;
    

    (This syntax is a GNU extension to C, so you might have to use the GCC and not LLVM - http://gcc.gnu.org/onlinedocs/gcc-3.2.3/gcc/Conditionals.html#Conditionals).

提交回复
热议问题