prec.right
来自「android-w.song.android.widget」· RIGHT 代码 · 共 29 行
RIGHT
29 行
`Say' echos its argument. Its return value is of no interest.`Truth' echos its argument and returns a TRUE result.`False' echos its argument and returns a FALSE result. Truth 1 && Truth 2 || Say 3 output=12( Truth 1 && Truth 2 ) || Say 3 output=12 Truth 1 && False 2 || Say 3 output=123( Truth 1 && False 2 ) || Say 3 output=123 False 1 && Truth 2 || Say 3 output=13( False 1 && Truth 2 ) || Say 3 output=13 False 1 && False 2 || Say 3 output=13( False 1 && False 2 ) || Say 3 output=13Truth 1 || Truth 2 && Say 3 output=13Truth 1 || ( Truth 2 && Say 3 ) output=1Truth 1 || False 2 && Say 3 output=13Truth 1 || ( False 2 && Say 3 ) output=1False 1 || Truth 2 && Say 3 output=123False 1 || ( Truth 2 && Say 3 ) output=123False 1 || False 2 && Say 3 output=12False 1 || ( False 2 && Say 3 ) output=12
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?