随笔分类 -  Java基础技术

摘要:知乎上不错的讲解: http://www.zhihu.com/question/20070065 http://www.zhihu.com/question/21669554讲解如何使用github的视频:http://www.happycasts.net/?utf8=%... 阅读全文
posted @ 2014-11-17 10:18 sunruntheway 阅读(134) 评论(0) 推荐(0)
摘要:1.super()和this()区别: super():调用父类无形参的构造方法;super(形参):调用父类中某个带形参的构造方法;this(形参):调用本类中另一种形式的构造方法; 注意:放在方法的首行;2.super和this的区别: super.父类的成员... 阅读全文
posted @ 2014-10-30 15:56 sunruntheway 阅读(1970) 评论(0) 推荐(1)