浏览 1660 次
锁定老帖子 主题:ruby中===和==的区别
该帖已经被评为新手帖
|
|
---|---|
作者 | 正文 |
发表时间:2007-04-29
irb(main):031:0> Exception==Exception => true irb(main):032:0> Exception===Exception => false 试了很多,才发现上面的两个比较结果不一样,但是不知道为什么。 哪位大侠详细介绍一下这两个比较符的不同之处啊! 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2007-04-29
== Test for equal value.
=== Used to compare the each of the items with the target in the when clause of a case statement. |
|
返回顶楼 | |
发表时间:2007-04-30
simohayha 写道 == Test for equal value.
=== Used to compare the each of the items with the target in the when clause of a case statement. 能不能举例说明一下呢,文字太抽象了。 |
|
返回顶楼 | |