在VB.NET中VB.NET CASE语句就是比较常用的一种,下面是详细的介绍和代码的演示:
创新互联是一家专业提供温泉企业网站建设,专注与成都网站建设、网站制作、H5场景定制、小程序制作等业务。10年已为温泉众多企业、政府机构等服务。创新互联专业网站建设公司优惠进行中。
1、可以用 Select...Case 语句来替换 If...Then...Else 语句,所不同的是If 和 ElseIf 语句可在每个语句中计算不同的表达式,而 Select 语句对单个表达式只计算一次,然后将其和不同的值比较。
Function bonus(ByVal performance As Integer, _ ByVal salary As Decimal) As Decimal
Select performance
Case 1
Return salary * 0.1
Case 2
Return salary * 0.3
Case 3
Return salary * 0.7
Case 4
Return salary * 0.9
Case 5
Return salary * 1.2
End Select
End Function
2、VB.NET Case语句可包含多个值和某个范围的值,代码案例如下:
Function bonus(ByVal performance As Integer, _ ByVal salary As Decimal) As Decimal
Select performance
Case 1
Return salary * 0.1
Case 2,3
Return salary * 0.3
Case 3 To 7
Return salary * 0.7
Case 8 To 9
Return salary * 0.9
Case Is = 15
Return salary * 1.2
Case Else
Return 0
End Select
End Function
select case when a1 and b2 and c3 then d=1
when a1 and b2 and c3 then d=2
... end
至于写多少,没限制,,只要你语句不卡,,,
用法不一样,。net中使用swithch
vb中代码
Select Case itemc
Case 1
Response.Write("1")
Case 2
Response.Write("2")
Case 3
Response.Write("3")
Case 4
Response.Write("4")
Case Else
Response.Write("other")
End Select
vb。net中代码
switch (itemc)
{
case 1:
Response.Write("1");
break;
case 2:
Response.Write("2");
break;
case 3:
Response.Write("3");
break;
case 4:
Response.Write("4");
break;
default:
Response.Write("other");
break;
}
虽然都叫vb但是在用法上还是存在差异,语法问题
当前名称:vb点虐
里case的简单介绍
文章源于:https://www.cdcxhl.com/article10/ddgidgo.html
成都网站建设公司_创新互联,为您提供自适应网站、网页设计公司、手机网站建设、企业建站、网站策划、网站收录
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联