• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

VB.Net - 循环

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

可能有一种情况,当你需要执行一段代码几次。

 一般来说,语句是按顺序执行的:函数中的第一个语句首先执行,然后是第二个语句,依此类推。

编程语言提供允许更复杂的执行路径的各种控制结构。

循环语句允许我们多次执行一个语句或一组语句,以下是大多数编程语言中循环语句的一般形式:



VB.Net 提供以下类型的循环来处理循环需求。 单击以下链接以检查其详细信息。

循环类型 描述

Do Loop

It repeats the enclosed block of statements while a Boolean condition is True or until the condition becomes True. It could be terminated at any time with the Exit Do statement.
它重复包含的语句块内布尔条件为 True 或直到条件变为 True 。 它可以随时使用 Exit Do 语句终止。

For...Next

It repeats a group of statements a specified number of times and a loop index counts the number of loop iterations as the loop executes.
它重复指定次数的一组语句,循环索引计算循环执行时的循环迭代数。

For Each...Next

It repeats a group of statements for each element in a collection. This loop is used for accessing and manipulating all elements in an array or a VB.Net collection.
它为集合中的每个元素重复一组语句。 这个循环用于访问和操作数组或 VB.Net 集合中的所有元素。

While... End While

It executes a series of statements as long as a given condition is True.
只要给定条件为 True ,它就执行一系列语句。

With... End With

It is not exactly a looping construct. It executes a series of statements that repeatedly refer to a single object or structure.
它不是一个循环结构。 它执行一系列重复引用单个对象或结构的语句。

Nested loops

You can use one or more loops inside any another While, For or Do loop.
您可以在任何其他 WhileForDo 循环中使用一个或多个循环。

循环控制语句:

循环控制语句从其正常序列改变执行。 当执行离开作用域时,在该作用域中创建的所有自动对象都将被销毁。

VB.Net 提供以下控制语句。 单击以下链接以检查其详细信息。

控制语句 描述

Exit statement

Terminates the loop or select case statement and transfers execution to the statement immediately following the loop or select case.

终止循环或选择大小写语句,并将执行转移到循环或选择大小之后的语句。

Continue statement

Causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating.
导致循环跳过其本身的其余部分,并在重复之前立即重新测试其状态。

GoTo statement

Transfers control to the labeled statement. Though it is not advised to use GoTo statement in your program.

将控制转移到带标签的语句。 虽然不建议在程序中使用 GoTo 语句。



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
VB.Net - 字符串发布时间:2022-01-22
下一篇:
VB.Net - 决策发布时间:2022-01-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap