switch语句是怎么执行的,switch循环语句怎么用

首页 > 教育 > 作者:YD1662024-05-02 13:07:59

Ø 如果方法有明确的返回值,一定要有return带回一个值

在方法定义的时候,如果指定了返回值类型,就必须有return。

switch语句是怎么执行的,switch循环语句怎么用(9)

方法嵌套的错误情况:

表 3

class Demo14 {

public static void main(String[] args) {

//抽取、定义一个方法,用来计算某个数据的立方值。

/*

[修饰符] 返回值类型 方法名([参数类型 参数名称...]) {

方法体;

return 返回值;

}

*/

public static int qiuLiFangHe(int number) {

//实现求立方值的功能

int sum = number * number * number;

return sum; //返回立方,返回数据

}

}

}

上一页123末页

栏目热文

文档排行

本站推荐

Copyright © 2018 - 2021 www.yd166.com., All Rights Reserved.