5个回答
展开全部
GOTO语句属于无条件的跳转语句,因为C#允许为代码行加上标签,这样就可以用GOTO语句直接跳转到这些代码行上。实例如下:
private void Form1_Load(obfect sender,EventArgs e)
{
int i=9;
if(i%2==0)
goto Found;
else
goto NoFound;
NoFound:
MessageBox.Show(i.ToString()+"不是偶数");
goto finish;
Found:
MessageBox.Show(i.ToString()+"是偶数);
goto finish;
finish:
Console.Read();
}
private void Form1_Load(obfect sender,EventArgs e)
{
int i=9;
if(i%2==0)
goto Found;
else
goto NoFound;
NoFound:
MessageBox.Show(i.ToString()+"不是偶数");
goto finish;
Found:
MessageBox.Show(i.ToString()+"是偶数);
goto finish;
finish:
Console.Read();
}
展开全部
goto语句的用法如下:
goto<labelName>;
标签用下述方式定义:
<labelName>;
例如,下面的代码:
int myInteger = 5;
goto myLabel;
myInteger +=10;
myLabel;
console.writeline("myInteger={0}",myInteger);
其执行过程如下:
1.myInteger声明为int类型,并赋予值5;
2.goto语句中断正常的执行过程,把转到标为myLabel的代码行上.
3.myInterger的值写到控制台上.
goto<labelName>;
标签用下述方式定义:
<labelName>;
例如,下面的代码:
int myInteger = 5;
goto myLabel;
myInteger +=10;
myLabel;
console.writeline("myInteger={0}",myInteger);
其执行过程如下:
1.myInteger声明为int类型,并赋予值5;
2.goto语句中断正常的执行过程,把转到标为myLabel的代码行上.
3.myInterger的值写到控制台上.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
using System;
namespace myspace
{
class Class1
{
static void main(string[] args)
{
Console.WriteLine("hello,Do You see?");
H1:
Console.WriteLine("hello,Do You see is by your eyes?");
Console.WriteLine("Hi,This is the second line");
goto H1;
}
}
}
namespace myspace
{
class Class1
{
static void main(string[] args)
{
Console.WriteLine("hello,Do You see?");
H1:
Console.WriteLine("hello,Do You see is by your eyes?");
Console.WriteLine("Hi,This is the second line");
goto H1;
}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
现在已经不推荐使用goto语句了,因为它严重破坏了结构化程序设计
不利于维护与代码的阅读
而用选择结构,循环结构,和顺序结构
用GOTO实现的你可以使用上面的三个结构就可以实现
不利于维护与代码的阅读
而用选择结构,循环结构,和顺序结构
用GOTO实现的你可以使用上面的三个结构就可以实现
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2009-06-14
展开全部
goto 是执行的时候突然调到某一个值执行。不是程序正常走势。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询