【Java】Java求职知识点Review

2015-07-21

JAVA 1. 举例说明多态和重载区别 重载 class A{ void Aa(int a ){....} void Aa (int a,int b){...} } 虽然Aa定义了2个 但是因为他们注册的参数不同所以 ...