* 方法:其实就是完成特定功能的代码块
* 定义格式:
* 修饰符 返回值类型 方法名(参数类型 参数名1,参数类型 参数名2...) {
* 方法体;
* return 返回值;
* }
* 格式解释:
* A:修饰符 目前记住public static
* B:返回值类型 用于限定返回值的数据类型
* C:方法名 为了方便我们调用方法的名字
* D:参数类型 用于限定调用方法时传入的数据的类型
* E:参数名 用于接收调用方法时传入的数据的变量
* F:方法体 完成功能的代码
* G:return 结束方法,并且把返回值带给调用者
*
* 写一个方法有两个明确:
* A:返回值类型 明确功能结果的数据类型
* B:参数列表 明确有几个参数,以及参数的数据类型
*
* 案例:
* 写一个方法用于求和。
*/
public class MethodDemo {
public static void main(String[] args) {
}
public static int sum(int a,int b) {
int c = a + b;
return c;
}
}
package com.itheima_01;
public class MethodDemo2 {
public static void main(String[] args) {
int result = sum(10,20);
System.out.println(result);
}
public static int sum(int a,int b) {
int c = a + b;
return c;
}
}