1. 为什么需要成员方法?
Method02.java
- 看一个需求:
请遍历一个数组 , 输出数组的各个元素值。 - 解决思路 1:传统的方法,就是使用单个
for
循环,将数组输出,看看问题是什么?
public class Method02 {
public static void main(String[] args) {
int[][] map = {{0, 1, 1}, {1, 1, 1}, {1, 1, 3}};
for (int i = 0; i < map.length; i++) {
for (int j = 0; j < map[i].length; j++) {
System.out.print(map[i][j] + " ");
}
System.out.println();
}
}
}
- 解决思路 2:定义一个类
MyTools
,然后写一个成员方法,调用方法实现,看看效果又如何。
public class Method02 {
public static void main(String[] args) {
int[][] map = {{0, 1, 1}, {1, 1, 1}, {1, 1, 3}};
Mytools mytools = new Mytools();
mytools.printArr(map);
mytools.printArr(map);
}
}
//把输出的功能,写到一个方法中,然后再调用该方法
class Mytools{
//方法,接收一个二维数组
public void printArr(int [][] map){
System.out.println("----------------------");
//对传入的map数组进行遍历输出
for (int i = 0; i < map.length; i++) {
for (int j = 0; j < map[i].length; j++) {
System.out.print(map[i][j] + " ");
}
System.out.println();
}
}
}
- 可以从重复调用方法
2. 成员方法的好处
- 提高代码的复用性
- 可以将实现的细节封装起来,然后供其他用户来调用即可