java方法重载错误说法_Java中的方法重载和空错误

在Java中重载方法时,这些函数具有相同的名称,并且该函数的参数数目相同。在这种情况下,如果参数不是原始的并且具有接受空值的能力,则在使用空值调用该函数时,编译器会感到困惑,因为它无法选择其中一个,因为它们都具有接受空值的能力。这会导致编译时错误。

示例

以下是显示相同内容的示例-public class Demo {

public void my_function(Integer i) {

System.out.println("The function with integer as parameter is called ");

}

public void my_function(String name) {

System.out.println("The function with string as parameter is called ");

}

public static void main(String [] args) {

Demo my_instance = new Demo();

my_instance.my_function(null);

}

}

输出结果/Demo.java:15: error: reference to my_function is ambiguous

my_instance.my_function(null);

^

both method my_function(Integer) in Demo and method my_function(String) in Demo match

1 error

这种情况下的解决方案已在下面进行了演示-

示例public class Demo {

public void my_function(Integer i) {

System.out.println("The function with integer as parameter is called ");

}

public void my_function(String name) {

System.out.println("The function with string as parameter is called ");

}

public static void main(String [] args) {

Demo my_instance = new Demo();

String arg = null;

my_instance.my_function(arg);

}

}

输出结果The function with string as parameter is called

名为Demo的类包含名为“ my_function”的函数,该函数采用整数作为参数。相同的函数已重载,并且参数是字符串。当调用这两个功能中的任何一个时,相关的消息就会打印在屏幕上。在main函数中,将创建Demo类的实例,并为字符串类型的参数分配一个空值。现在,将调用此实例,并将先前定义的参数作为参数传递。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值