“Return”的版本间的差异
来自YFRobotwiki
(以“ {| border="0" cellpadding="20" width="100%" |- |width="100%" valign="top" align="left"| Terminate a function and return a value from a function to the calling func...”为内容创建页面) |
(没有差异)
|
2015年7月31日 (五) 20:16的最后版本
|
Terminate a function and return a value from a function to the calling function, if desired.
语法 return; return value; // both forms are valid
value: any variable or constant type
A function to compare a sensor input to a threshold
int checkSensor(){
if (analogRead(0) > 400) {
return 1;
else{
return 0;
}
}
The return keyword is handy to test a section of code without having to "comment out" large sections of possibly buggy code.
void loop(){
// brilliant code idea to test here
return;
// the rest of a dysfunctional sketch here
// this code will never be executed
}
|
更多建议和问题欢迎反馈至 YFRobot论坛