gpt4 book ai didi

oop - 重载概念 : which function will be called and why?

转载 作者:行者123 更新时间:2023-12-04 19:41:16 24 4
gpt4 key购买 nike

Class Student { 

public void setName(String name){
//Some implementation
}

public void setName(Object name){
// some implementation
}
}

我有一个带有重载方法的 Student 类,我只想知道,将调用哪个方法,为什么?

Student s = new Student()
s.setName("abc");

编辑语言:JAVA

最佳答案

它将调用 setName(String name) 函数,因为您传递的是 String 而不是 String 的对象。

关于oop - 重载概念 : which function will be called and why?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29822495/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com