标签:http java 代码 html sp on new c ef
学编程吧学java教程之普通方法重载发布了,欢迎通过xuebiancheng8.com来访问
先来看什么是普通方法重载呢,先来看一个例子
public class Person{
String username;
int age;
public void hello(){
System.out.println("Hello");
}
public void hello(String username){
System.out.println("你好"+username);
}
public void hello(int age){
System.out.println("你好"+age);
}
}
然后有如下代码:
Person p =new Person();
p.hello();
p.hello(“张三”);
p.hello(20);
输出结果:Hello
你好,张三
你好,20
上面这个例子中就是普通方法重载,他们的共同特点都是方法名相同,参数列表不同。具体调用那个方法,由调用的参数决定。
普通方法重载需要满足以下特点:
方法名相同,参数列表必须不同,和访问控制符和返回值没有关系。
参数列表不同有下面几种情况
1.参数个数不同
2.参数列表顺序不同
3.参数的类型不同
满足以上特点的都可以构成重载。
更多java方法重载内容请通过xuebiancheng8.com来访问
具体网址是
http://xuebiancheng8.com/play/goodgoodstudy_96_daydayup.html
标签:http java 代码 html sp on new c ef
原文地址:http://www.cnblogs.com/xuebiancheng8/p/3945903.html