重载:方法名相同,参数不同
例如:
public class Simple
{
public void test()
{}
public void test(int a, intb)
{}
public void test(int a, String s)
{}
}
原文地址:https://www.cnblogs.com/yangwu-183/p/10200350.html
时间: 2024-10-10 05:58:44
重载:方法名相同,参数不同
例如:
public class Simple
{
public void test()
{}
public void test(int a, intb)
{}
public void test(int a, String s)
{}
}
原文地址:https://www.cnblogs.com/yangwu-183/p/10200350.html