weather 和 if 有什么区别?
whether和if都可以引导宾语从句,表示“是否”,在口语或间接引语中两者可以互换使用。如:
I wonder if / whether I can get some advice from you.
Ask him whether / if he can come.
但在有些情况下,whether和if的用法有一定区别。
1. whether引导的从句常可以与连词or或or not直接连用,而if一般不能。如:
正: Let me know whether you can come or not.
误: Let me know if you can come or not.
2. 当宾语从句提到句首时,只能用whether引导,而不能用if。如:
正: Whether it is true or not, I can’t tell.
误: If it is true or not, I can’t tell.
3. whether可以引导带to的不定式,if则不能。如:
正: I don’t know whether to accept or refuse.
误: I don’t know if to accept or refuse.
4. whether及其引导的成分可放于介词之后,作介词的宾语,但if不能。如:
正: I worry about whether I hurt her feelings.
误: I worry about if I hurt her feelings.
5. whether可以引导从句,作主语、表语或同位语,而if不能。如:
正: It was uncertain whether he would come.
误: It was uncertain if he would come.
正: His first question was whether Tom had arrived yet.
误: His first question was if Tom had arrived yet.
正: We must consider the question whether we will take these measures.
误: We must consider the question if we will take these measures.
if和switch的主要区别如下:
1)if的括号内的表达式可以分别是布尔类型的合法表达式、可以是所有大于0的正整数为true,反之为小于等于0的正整数为false、可以是常量、枚举;而switch括号内也符合前面if提到的外,就是当圆括号内为正整数只能是0或1,其它的正整数属于 default范围。这点可以看如下代码:
switch (2) // 除了0和1的其它正整数
{
case false: // 对应0
printf("false\n");
break;
case true: // 对应1
printf("true\n");
break;
default: // 对应非0和1以外的正整数
printf("其它\n");
break;
}
2)尽管if括号内也支持常量、枚举但也是有前提的那就是常量或枚举必须要显式给出相应的数值。而switch则不必;
3)switch适合处理判断分支较多的情况下(代码可读性好),而if适合处理判断分支较少的情况下(反之代码可读性差,容易出现漏判或重复判断)。
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!