返回值的使用方法

方法的返回值:(有两种情况)

1、如果方法就有返回值,方法中必须使用关键字return返回该值,返回类型为该方法的类型

2、 如果方法没有返回值,返回类型为void。

示例代码:

public class Ch05 {

 

	public Scanner input;

	public String[] name = new String[5];

 

	public Ch05(Scanner input) {

		super();

		this.input = input;

	}

	

	public String[] student(){//返回值类型是一个数组

		System.out.println("请输入5个学生的姓名");

		for (int i = 0; i < name.length; i++) {

		 name[i] = input.next();

		}

		Arrays.sort(name);//对数组进行排序

		System.out.println("****排序后****");

		return name;//返回数组name

	}

	

	public static void main(String[] args) {

		Ch05 d = new Ch05(new Scanner(System.in));

		System.out.print(Arrays.toString(d.student())+"\t");

		//d.student():调用返回值

		//Arrays.toString(d.student()):把数组转换成字符串

	}

}

 

 

你可能感兴趣的:(返回值的使用方法)