提交 46374381 编写于 作者: 杜庆泉's avatar 杜庆泉

Update operator.md

上级 7cb6a55e
......@@ -56,28 +56,23 @@
**bug&tips**
暂时不支持 位运算符赋值操作
位运算符 暂时不支持 小括号运算提级
```uts
let a |= (复杂表达)
let a = 64|(1<<8)
let a ^= (复杂表达)
```
let a ~= (复杂表达)
期望的是先进行小括号内的左移操作
```
类似场景,需要拆分一个中间变量来处理
```uts
let temp = (复杂表达)
let a |= temp
let a ^= temp
let a ^= temp
let temp = 1 << 8
let a = 64 | temp
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册