java 方法和方法重载的使用方法和介绍

注意事项:

1.方法必须写在main方法之外

2.方法在main里面引用 

1.方法的调用和建立

package array_1;

public class 方法函数 {

	public static void main(String[] args) {
		// TODO 自动生成的方法存根
func();
	}
	public static void func(){
		int a=10;
		if(a%2==0) {
			System.out.println("true");
		}else {
			System.out.println("flase");
		}
	}
}

2.方法重载

重载的定义:

在同一个类中,函数名相同,但是参数不相同的函数(类型不同,或者数量不同),就是方法重载

package array_1;

public class 方法重载 {

	public static void main(String[] args) {
		// TODO 自动生成的方法存根
//在同一个类中,函数名相同,但是参数不相同的函数(类型不同,或者数量不同),就是方法重载!!!!
		//调用方法
		int a = sum(10,20);
		double b =sum((int) 10.0,30.0);
		int c = sum(10,20,50);
		System.out.println(a);
		System.out.println(b);
		System.out.println(c);
	}

	public static int sum(int a,int b) {
		return a+b;
	}
	public static double sum(double a,double b) {
		return a+b;
	}
	public static int sum(int a,int b,int c) {
		return a+b+c;
	}
	
}

3.方法引用时的强制转换(方法练习)

package array_1;

public class 方法重载的练习 {

	public static void main(String[] args) {
		// TODO 自动生成的方法存根
System.out.println(compare(10,20));
//强制转换
System.out.println(compare((byte)10,(byte)20));
System.out.println(compare((long)20,(long)20));
System.out.println(compare((short)10,(short)20));
	}
public static boolean compare(int a, int b) {
	System.out.println("int");
	return a==b;
	}
public static boolean compare(long a, long b) {
	System.out.println("long");
	return a==b;
	}
public static boolean compare(byte a, byte b) {
	System.out.println("byte");
	return a==b;
	}
public static boolean compare(short a, short b) {
	System.out.println("short");
	return a==b;
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

月亮睡在窗边

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值