中文
Sign in
AI tools
热门问题
时间线
聊天
Loading AI tools
全部
文章
字典
引用
地图
return statement
来自维基百科,自由的百科全书
Found in articles
函数原型
中的整型参数。如果省略函数原型,编译器将无法执行此操作,函数MyFunction将在堆栈上的其他一些数据上运行(可能是返回地址(英语:
Return
statement
)或当前不在作用域中的变量的值)。通过包含函数原型,您将通知编译器函数myFunction接受一个整型参数,并使编译器能够捕获这些类型的错误,并使编译过程顺利运行。
递归下降解析器
";"}
statement
.
statement
= ident ":=" expression | "call" ident | "begin"
statement
{";"
statement
} "end" | "if" condition "then"
statement
| "while"
Javadoc
* * @param variable 描述文本。 (3) * @
return
描述文本。 */ public int methodName (...) { // method body with a
return
statement
} 与方法类似的注释也可以用于变量的注释,但省略了第(3)部分,这里只包含了对变量的简短描述:
Lua
= x * i end
return
x end Lua有一种类型的条件测试:if then end,它具有可选的else和elseif then执行控制构造。 通用的if then end语句需要三个关键字: if condition then --
statement
body end
JavaScript语法
"InvalidEmailException") {
statement
; } catch (e) {
statement
; } 在浏览器中,onerror比捕获异常更常用。 onerror = function (errorValue, url, lineNr) {...;
return
true;}; 与网页浏览器不相关。