--------------------------------------------------------------------------------- [C语言的类型] 1. 整型(都分为有符号signed和无符号unsigned两个版本): char, short, int, long, long long # 注:long long 为C99标准,是64位长整型,需要编译器对C标准的支持. 引:C标准规定整型值相互间大小规则,长整型至少应该和整型一样长,而整型至少应该和短整型一样…
通常我们可以使用16进制的格式表示RGB颜色,比如0x2f88c0.通过位操作运算,能很方便的将其中的R,G,B颜色各部分分别提取出来.反之,也可以将R,G,B颜色值组合成一个完整的颜色. 1,提取颜色的组成部分 1 2 3 4 var color:uint = 0x445577 var r:uint = color >> 16 //0x44 var g:uint = color >> 8 & 0xFF //0x55 var b:uint = color & 0…
Given a string of numbers and operators, return all possible results from computing all the different possible ways to group numbers and operators. The valid operators are +, - and *. Example 1: Input: "2-1-1" Output: [0, 2] Explanation: ((2-1)-…
条件三元运算 # 三元条件运算,如果条件为真则返回x,如果条件为假则返回y x = 3 y = 5 ret = x if x > y else y print(ret) # 返回 y值 for循环三元运算 ret = [i for i in range(5)] print(ret) 带条件的for循环三元运算 ret = [i for i in range(5) if i == 3] print(ret)…