C#中肯定可以使用的,如下:- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("goto语句在C#中能不能用?");
- H1:
- Console.WriteLine("事实证明,C#中是可以使用goto语句的!!");
- Console.ReadKey();
- goto H1;
- }
- }
- }
复制代码 优点:代码跳转快,方便。
缺点:现在的编程思想提倡不使用goto!!因为在后续的代码维护之中,goto语句是的程序结构混乱(虽然它能够正确执行),读起来很难懂。
所以,在C#中使用goto语句总体来说弊大于利感觉! |