Click here to watch in Youtube :
https://www.youtube.com/watch?v=LpwiBvtW2M0&list=UUhwKlOVR041tngjerWxVccw
Student.java
StudentTest.java
https://www.youtube.com/watch?v=LpwiBvtW2M0&list=UUhwKlOVR041tngjerWxVccw
Student.java
public class Student { public String name; public int age; public String city; public Student(String name, int age) { this.name = name; this.age = age; } public Student(String name, int age, String city) { /* * The this() constructor call should be used to reuse the constructor * in the constructor. It maintains the chain between the constructors * i.e. it is used for constructor chaining. * * Now no need to initialize name and age. */ this(name, age); this.city = city; } }
public class StudentTest { public static void main(String[] args) { Student studentObject = new Student("Peter",25,"Bangalore"); System.out.println("Name : "+studentObject.name); System.out.println("Age : "+studentObject.age); System.out.println("City : "+studentObject.city); } }
Name : Peter Age : 25 City : Bangalore
https://sites.google.com/site/javaee4321/java/ThisKeyWordDemoCallTwoArgsConsApp.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/ThisKeyWordDemoCallTwoArgsConsApp
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/f95cef6f929a55d126484d6f51e7b129a718c586/BasicJava/ThisKeyWordDemoCallTwoArgsConsApp/?at=master
See also:
No comments:
Post a Comment