方法,传真和传引用

在调用方法的时候,需要根据方法的参数为方法提供值,传基本数据类型和穿引用类型是有区别的,请看下面的代码:


import java.util.Scanner;


public class ParameterText {
public static void main(String[]args)
{
Scanner in = new Scanner(System.in);
ParameterText texe = new ParameterText(); //创建对象
System.out.println("请输入两个数:");
int a=in.nextInt();
int b=in.nextInt();
texe.exchange(a, b);//调用方法
System.out.println(+a+" "+b);
int[] c;
c = new int[5];
System.out.println("请输入五个数:");
for(int i=0;i<c.length;i++)
c[i] = in.nextInt();
texe.reverse(c);
for(int i=0;i<c.length;i++)
System.out.print(c[i]+" ");
}
void exchange(int a,int b)
{
int temp=a;
a=b;
b=temp;
}
void reverse(int a[])
{
for(int i=0;i<a.length/2-1;i++)
{
int temp=a[i];
a[i]=a[a.length-1-i];
a[a.length-1-i]=temp;
}
}


}


你可能感兴趣的:(方法,传真和传引用)