单词 | return statement |
释义 | 例句释义: 返回语句,返回语回,状态,回覆叙述,陈述 1. Put a Return statement at the point where the procedure's task is completed. 在过程任务结束的地方放置一个Return语句。 msdn2.microsoft.com 2. defs do not require a return statement, so if the last line produces some value, that value is returned by the def. def不需要return语句,因此如果最后一行产生某个值,那么这个值由def返回。 www.ibm.com 3. To avoid this potentially confusing situation, do not use a return statement in a finally block. 若要避免这种可能会导致混淆的情况,请不要在finally块中使用return语句。 msdn2.microsoft.com 4. When a RETURN statement is executed, the rows inserted into the variable are returned as the tabular output of the function. 当执行RETURN语句时,插入变量的行将作为函数的表格输出返回。 technet.microsoft.com 5. Most of this plug-in parser's implementation functions consist of a simple return statement. 该插件解析器的实现函数的大部分是有一个简单的返回语句组成的。 www.ibm.com 6. The last line of a Groovy method is an implicit return statement. Groovy方法的最后一行是一个隐式的return语句。 www.ibm.com 7. In JavaFX Script, a function can contain variable declarations and a return statement, all contained within curly braces. 在JavaFXScript中,函数可以包含变量声明和一个返回语句,所有语句都包含在花括号中。 www.ibm.com 8. Several of the actions take advantage of the implicit return statement to return data to a GSP page named the same. 有些动作利用隐式的return语句将数据返回到具有相同名称的GSP页面。 www.ibm.com 9. A method that returns a value must have a return statement that specifies the result. Methods may return values of any type. 一个有返回值的方法必须包含一条返回语句指明返回结果。方法可以返回任何类型的结果。 www.bing.com 10. The return statement terminates execution of the method in which it appears and returns control to the calling method. return语句终止它出现在其中的方法的执行并将控制返回给调用方法。 msdn2.microsoft.com 1. You use the return statement to stop execution of a function and return the value of expression. 使用return语句来终止一个函数的执行,并返回expression的值。 msdn2.microsoft.com 2. Can there be more than one return statement in the body of a method? 方法的主体可以包含多个return语句嘛? www.bing.com 3. Unfortunately, because the loop branch is so close to the return statement, you cannot predict both the loop branch and the return branch. 不幸的是,由于循环分支太接近返回语句,因此您无法预测循环分支和返回分支。 www.ibm.com 4. The return value of the function is specified with a return statement. 函数返回值使用return语句指定。 www.ibm.com 5. So, functions that are going to return a value must use the return statement. 所以,要从函数里返回值就必须使用返回语句。 blog.csdn.net 6. The RETURN statement returns a single integer value to the calling environment, causing an immediate exit from the procedure. RETURN语句将单个整数值返回到调用环境中,并且导致立即从过程退出。 www.ianywhere.com 7. The RETURN statement can be used to return other integers, with their own user-defined meanings. RETURN语句可用于返回其它整数,由用户定义它们的含义。 www.ianywhere.com 8. Finally notice that there is no return statement. 最后要注意没有返回语句。 www.ibm.com 9. Compiles conference return statement. 编纂报告,以提交航运公会; www.vtc.edu.hk 10. Placing an instruction after a return statement ensures that it will never be executed. 在返回语句后放一条指令确保了它不会被执行。 www-128.ibm.com 1. Generates code for the specified method return statement. 为指定的方法返回语句生成代码。 msdn2.microsoft.com 2. You specify the return code for a stored procedure using the RETURN statement. 使用RETURN语句指定存储过程的返回代码。 msdn2.microsoft.com 3. at the end. All other routines that return an int must have an explicit return statement that returns the appropriate int value. 所有返回值是int型的函数,它必须要有一个显式的return语句,并且返回一个恰当的int值。 hi.baidu.com 4. I can write it with or without the return statement, and my results will be the same. 我可以编写它,让它带有或者不带return语句,得到的结果是相同的。 www.ibm.com 5. A single result can be returned using a RETURN statement. 可以使用RETURN语句返回单个结果。 www.ianywhere.com 6. In these cases, the script ends with a value or a return statement. 在这些情况下,脚本以值或返回语句结束。 www.ibm.com 7. Since any code after the return statement is unreachable, it's marked in error. 由于return语句后面的所有代码都不能执行,因此将其标记为错误。 www.ibm.com 8. This is equivalent to a return statement in other programming languages. 这相当于其它编程语言中的return语句。 www.ibm.com 9. In the GetEnumerator method, the values of the array are returned using the yield return statement. 在GetEnumerator方法中,使用yieldreturn语句返回数组的值。 msdn2.microsoft.com 10. And you don't need a comment before the return statement saying, "Now we return a value, " either. 同样,在返回语句之前也不需要使用类似“Nowwereturnavalue”这样的注释。 www.ibm.com 1. A Return statement within an anonymous Iterator works just like C#'s yield return. 在匿名迭代器中的Return语句工作方式就像C#的yieldreturn一样。 www.infoq.com 2. In the following script, the upCase method has a conditional return statement for zero-length strings. 在下面的脚本中,upCase方法有一个有条件的返回语句,返回非0长度的字符串。 www.bing.com 3. The mean value is passed back via the return statement. 平均值通过return语句传回。 www.ibm.com 4. You need an "&" before the function name but not in the return statement! 你需要用一个&在函数名之前,但不是在返回语句! www.showxiu.com 5. Click in the Java code just before the return "" statement. 在转到“return”声明之前单击Java代码。 www.ibm.com 6. Values are returned by using the optional return statement. 值通过使用可选的返回语句返回。 us2.php.net 7. The RETURN statement cannot have an argument. RETURN语句不能有参数。 technet.microsoft.com 8. The return statement is used to specify the value that is returned from the function. 返回语句用来指定从函数中返回的值。 blog.csdn.net 9. The recommended approach, however, is to include the Private variable as the value in a Return Statement (Visual Basic). 但是,建议的方法是包括Private变量作为Return语句(VisualBasic)中的值。 msdn2.microsoft.com 10. Set property procedures can return using either the Return Statement (Visual Basic) or the Exit Statement (Visual Basic). Set属性过程可以使用Return语句(VisualBasic)或Exit语句(VisualBasic)返回。 msdn2.microsoft.com 1. In Visual Basic 6. 0, you use the Return statement only to branch back to the code following a GoSub statement. 在VisualBasic6.0中,只能使用Return语句从分支返回到GoSub语句后面的代码。 msdn2.microsoft.com 2. A return statement of return aBookLocal needs to be added to the end of the method body. Here is the completed method returnaBookLocal的返回声明需要被添加到方法体的末尾。 www.ibm.com 3. Finally, note how the single row VALUES clause is used in the RETURN statement to return the end result as a single-row table 最后,注意在RETURN语句中使用了单行的VALUES子句,以便将最后的结果以单行的表的形式返回。 www.ibm.com 4. FUNCTION EXECUTED NO RETURN STATEMENT 执行的函数没有返回语句 blog.sina.com.cn 5. To return a value using the Return statement 使用Return语句返回值 msdn2.microsoft.com |
随便看 |
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。