- 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.
推薦閱讀
- Python for Secret Agents:Volume II
- Java完全自學教程
- Python爬蟲開發與項目實戰
- Learning Apache Kafka(Second Edition)
- Learning OpenStack Networking(Neutron)
- Instant Lucene.NET
- Linux Shell核心編程指南
- 基于ARM Cortex-M4F內核的MSP432 MCU開發實踐
- 小程序,巧應用:微信小程序開發實戰(第2版)
- Web前端應用開發技術
- 編程可以很簡單
- 深度實踐KVM:核心技術、管理運維、性能優化與項目實施
- Clojure Polymorphism
- C++服務器開發精髓
- 產品架構評估原理與方法