作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
<分区>
如何this发生了什么?
var_dump(0=="some string"); // yields true, why?
switch(0) {
case "a":
echo "a"; // <-- we get here, why?
break;
case "b":
echo "b";
break;
default:
echo "def";
break;
}
据此
0=="some string"
0==(int)"some string"
0==0
true
这也是合乎逻辑的:
0=="some string"
(string)0=="some string"
"0"=="some string"
false
我是一名优秀的程序员,十分优秀!