- Hands-On Object:Oriented Programming with C#
- Raihan Taher
- 83字
- 2021-07-02 12:44:35
goto statements
Even though they are less popular and it is not advisable to use them, goto statements are used for unconditional jumps in the language and they are widely used by the language itself. As a developer, you can use a goto statement to jump to any location of your program with the context you have:
... code block
goto lbl1;
...
...
lbl1: expression body
The goto statement directly jumps to the location specified without any condition or criteria.
推薦閱讀
- C++程序設(shè)計(jì)教程
- Learning Cython Programming(Second Edition)
- Spring Cloud Alibaba微服務(wù)架構(gòu)設(shè)計(jì)與開(kāi)發(fā)實(shí)戰(zhàn)
- Mastering Objectoriented Python
- 編程珠璣(續(xù))
- PyTorch自然語(yǔ)言處理入門(mén)與實(shí)戰(zhàn)
- 云原生Spring實(shí)戰(zhàn)
- 你不知道的JavaScript(中卷)
- 零基礎(chǔ)學(xué)Python網(wǎng)絡(luò)爬蟲(chóng)案例實(shí)戰(zhàn)全流程詳解(高級(jí)進(jìn)階篇)
- Spring+Spring MVC+MyBatis整合開(kāi)發(fā)實(shí)戰(zhàn)
- Apache Kafka Quick Start Guide
- Flutter跨平臺(tái)開(kāi)發(fā)入門(mén)與實(shí)戰(zhàn)
- Java程序設(shè)計(jì)入門(mén)
- Getting Started with Eclipse Juno
- Android開(kāi)發(fā)三劍客:UML、模式與測(cè)試