首页 > 编程 > .NET > 正文

VB.Net学习笔记(条件语句)

2024-07-10 13:03:23
字体:
来源:转载
供稿:网友


条件语句
vb.net中条件语句依然是if then语句和selecr case语句。



if then语句
if then语句比较简单,和原来一样的规则。



if条件语句举例

public class testa

public sub new()

dim b as boolean = true

if b = true then

'处理

else

'处理

end if



end sub

end class




select case
select case语句用于条件的多个结果的分支判断执行。值得注意的是:seleect case的判断表达式必须计算为某个基本数据类型(boolean、byte、char、date、double、decimal、integer、long、object、short、single 和 string)。

vb.net的case 块的执行不能“贯穿”到下一个 switch 节。这称为“无贯穿”规则。所以不需要有break跳出case块。

case字句可以是单一的变量,也可以是to和is的混合表达式。



select csae举例

public class testa

public sub new()

dim i as int32 = 100



select case i

case 1, 3, 5, 7

'处理

case 8 to 12

'处理

case 13 to 21, 25

'处理

case 31 to 35, 39, is > 50

'处理

end select

end sub

end class



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表