Java_方法/克隆对象

  • Post author:
  • Post category:java


直接在类中写一个方法

1.public代表方法是公开的

2.void表示返回值为空

3.spead是方法名称

4.()代表方法的形式参数为空

5.{}是方法体,里面是要实现的功能。

方法的使用

1.方法写好后,如果不去调用,则不会完成相应的操作。

2.先创建对象,然后调用方法即可,比如Person.speak()

调用使用点操作符(.)

这边一定要注意,不要是因为空参数列表,就忘了(),这样才是一个方法。

public void cal02(int n) {
		System.out.println("sum = " + n * (1 + n) / 2);
	}

(int n),括号中是形参列表,表示当前有一个形参n。

public int getSum(int n1, int n2) {
		return n1 + n2;
	}

1.public表明方法是公开的

2.int表明方法执行后,返回一个int值。

3.getSum:方法名

4.形参列表有两个。

class MyTools {
	public void printArr(int[][] 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();
		}
	}
}

class 是一个类,类名叫作:MyTools,类名一般都要首字母大写

然后类中可以写一个方法,

1.public代表是公共方法

2.void返回值为空

3.方法名为printArr

4.括号中为形参列表

5.{}大括号中是方法体

public class Method02 {
	public static void main(String[] args) {
		int[][] map = {{0, 0, 1}, {1, 1, 1}, {1, 1, 3}};
		// 调用方法首先要创建一个对象
		MyTools tool = new MyTools();
		tool.printArr(map);
	}
}

class MyTools {
	public void printArr(int[][] 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();
		}
	}
}

想要调用方法必须要new一个对象

比如这里的:MyTools tool = new MyTools();

MyTools是类名,而tool是方法名

使用时,需要tool.方法名

public是访问修饰符

克隆对象



版权声明:本文为yeeeeeeeee_原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。