goto是什么意思?
goto ['ɡo,tʊ]
v. 转到
n. (Goto) (美)戈托(人名)
用法:
1、The GOTO label statement can unconditionally exit from a loop and transfer control to theexecutable statement or statement block that follows the specified statement label.
GOTO 标签语句可以无条件地退出循环,并将控制权转移到跟在指定的语句标签之后的可执行语句或语句块。
2、Every morning before I goto school I put it into my backpack.
每天早上,在我上学之前,我把它放进双肩背包里。
扩展资料:
同义词:vt. 转到 pass to
pass to
传到;转到;讨论
短语:
1、pass sth to sb 把某物递给某人 ; 把某物传给某人 ; 递给某人某物
2、Pass not to Miss 走过路过不要错过 ; 走过
3、pass on to us 留传给我们
双语例句:
1、As the flap is open, the molecule can pass to the right chamber .
由于皮瓣是开放的,这种分子可以传递给商会的权利。
2、Some template tags do not have any options, and thus have no parameters you can pass tothem.
有些模板标签没有任何选项,你也就没有什么参数可以传递给这些模板标签。
3、Swine flu does not typically pass to humans directly, but such transmission can occur.
猪流感一般不会直接通过人来传播,但是这种可能性依旧存在。
参考资料来源:有道词典-pass to
goto 英 ['ɡəʊtəʊ] 美 ['ɡəʊtəʊ]
n.转到
例句
It was a pity you didn't goto the lecture.
很遗憾你没有去听讲座。
Goto Repeated Attack if still attacking!
如果继续攻击,重复播放此动画!
扩展资料:
近义词的用法
pass 英 [pɑːs] 美 [pæs]
v. 通过;经过;度过;传递
名词: passer
过去式: passed
词语用法
v. (动词)
pass的基本意思是“过”,如“走过”“通过”“经过”“度过”等,指逐渐地、平稳地转入另一种状况。可用于时间、季节、状态,也可用于其他抽象事物,如“考试”“审查”等,甚至可以表示生命转入死亡。
pass作“通过,经过,穿过”解时,可用作不及物动词,也可用作及物动词。用作不及物动词时常和副词搭配使用; 用作及物动词时接名词或代词作宾语。
pass作“传递”解时,可接双宾语,其间接宾语可转化为介词to的宾语。
例句
用作动词 (v.)
The bill passed and became law.
议案通过后成了法律。
I passed the store on my way to the library.
我在去图书馆的路上经过了那家商店。
转到、去;戈托(人名)。
goto ['ɡo,tʊ]
1、作动词,翻译为转到、去。
例:
We saw him goto the library.我们看见他去了图书馆。
I'll goto Shenzhen next month, so I'll visit you then. 下个月我要去深圳,所以到时候我一定来拜访你。
2、戈托(人名)
例:This is my best friend Goto。这是我最好的朋友戈托。
3、C语言中,goto语句也称为无条件转移语句
goto语句通常与条件语句配合使用。可用来实现条件转移, 构成循环,跳出循环体等功能。但是,在结构化程序设计中一般不主张使用goto语句, 以免造成程序流程的混乱,使理解和调试程序都产生困难。
扩展资料
近义词:pass to
pass to 英 [pɑːs tu]、美 [pæs tu]
意思是:传给,转到,通到。
例:
You need boarding pass to board the airplane. 你需要有登机证才能登机。
There are also some restrictions on what you can do in the source code you pass to Javassist. 对于在传递给Javassist的源代码中可以做的事情有一些限制。
goto是一个跳转语句,指运行到这句时无条件跳转到对应位置。例如:
int main()
{
int a = 0;
int b = 0;
start: a = 3;
if(b == 0)
goto start;
return 0;
}
由于goto无条件跳转,第七行将会导致死循环,即b的值一直是0,程序运行到第七行的时候,就会再次跳转回第五行。
goto在有些情况下是很方便的一种跳转方法,但是一般不提倡使用这个语句。因为goto后面的那个单词很有可能在程序其他不该出现的地方被使用,这时会导致goto出现错误。
2014-07-09