摘要: int a=5; int b=a<4;(int b=a>4;) →b=0(b=1) 根据大小于号优先级大于等于号(==),连续比较都是从左到右 4>3==6>5 → 1 6>5>4 → 0 5==4==0 → 1 阅读全文
posted @ 2020-09-08 12:00 泥烟 阅读(316) 评论(0) 推荐(0) 编辑