本帖最后由 75100313 于 2014-1-7 09:19 编辑
- package com.mth.Collection;
- public class Test1 {
- public static void main(String[] args) {
- boolean b = true;
- if (b) {
- System.out.println("呵呵!");
- }
- //明明知道真假值 就不需要再去比较了?是这样的意思?
- if (b == true) {
- System.out.println("嗯嗯!");
- }
- }
- }
复制代码
老师在交通灯里面提到的面试题 没有理解老师的意思 不知道该从哪个角度去理解 特上来请教一下 !感谢大伙!
|