当前位置: 技术问答>java相关
给分2
来源: 互联网 发布时间:2015-01-14
本文导语: Which methods are correct overloading methods of the following method: public void example(){...} A. public void example( int m){...} B. public int example(){...} C. public void example2(){...} D. public int example ( int m, float f){...} 选...
Which methods are correct overloading methods of the following method:
public void example(){...}
A. public void example( int m){...}
B. public int example(){...}
C. public void example2(){...}
D. public int example ( int m, float f){...}
选什么?为什么?
public void example(){...}
A. public void example( int m){...}
B. public int example(){...}
C. public void example2(){...}
D. public int example ( int m, float f){...}
选什么?为什么?
|
覆盖与重载的最重要差别:
覆盖的方法:参数是一样的,返回值是一样的,如果只有参数一样,返回值不同是非法的,编译通不过;还有一点就是访问类型不能更严格(private -> (default) ->protected -> public 才可以)。
重载的方法:参数是不一样的(包括类型,顺序),返回值任意类型均可。
覆盖的方法:参数是一样的,返回值是一样的,如果只有参数一样,返回值不同是非法的,编译通不过;还有一点就是访问类型不能更严格(private -> (default) ->protected -> public 才可以)。
重载的方法:参数是不一样的(包括类型,顺序),返回值任意类型均可。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。