- 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.
推薦閱讀
- Oracle WebLogic Server 12c:First Look
- Python數據分析入門與實戰
- Unity Virtual Reality Projects
- Django Design Patterns and Best Practices
- Koa開發:入門、進階與實戰
- HTML5游戲開發案例教程
- HTML5+CSS3網站設計教程
- ElasticSearch Cookbook(Second Edition)
- PHP編程基礎與實踐教程
- Python機器學習算法與應用
- Go語言開發實戰(慕課版)
- Unity Character Animation with Mecanim
- Learning VMware vSphere
- Anaconda數據科學實戰
- HTML5移動前端開發基礎與實戰(微課版)