os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
代码:
class Father { public Father() { this("hello"); System.out.println("父类无参构造函数"); //this("hello");//通过this()去调用本类的其他构造方法,必须是第一句,放在后面是不行的 } //有参构造函数,String public Father(String str) { System.out.println("父类有参构造函数,String"); } } class Demo { public static void main(String[] args) { Father f = new Father(); } }
结果:
Java优秀,值得学习。
学习资源:itcast视频库。如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。
如果您觉得博文有可以改进的地方,留言即可。
时间: 2024-11-08 17:31:08