码迷,mamicode.com
首页 > 其他好文 > 详细

[ActionScript3.0] 逻辑或"||=" ,等于"=="和全等于"==="

时间:2015-02-14 17:24:39      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

function a(o:Object):void {  

  o||=new Object();  trace(o);

}

//此上下两个方法作用是一样的

function b(o:Object):void {  

  if(o === null){   

    o = new Object();  

  }  trace(o);

}

 

拓展:

等于"==" :比较两个值是否相等,当被比较的值类型不同时自动进行转换

"hello" == "hello"       //true

"5" == 5                     //true

true == 1                   //true

false == 0                  //true

"true" == true             //false

null == undefined       //true

 

全等于"===" :比较两个数据的值和数据类型是否都相等

"hello" == "hello"       //true

"5" == 5                     //compile error

true == 1                   //false

false == 0                  //false

"true" == true            //false

null == undefined      //false

[ActionScript3.0] 逻辑或"||=" ,等于"=="和全等于"==="

标签:

原文地址:http://www.cnblogs.com/frost-yen/p/4291993.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!