Click here to watch in Youtube :
https://www.youtube.com/watch?v=hwDkOC-kipE&list=UUhwKlOVR041tngjerWxVccw
Student.java
StudentTest.java
https://www.youtube.com/watch?v=hwDkOC-kipE&list=UUhwKlOVR041tngjerWxVccw
Student.java
public class Student { public String name; public int age; public void display() { /* * We can invoke the method of the current class by using the this * keyword. */ this.hello(); } public void hello() { System.out.println("hello"); } }
public class StudentTest { public static void main(String[] args) throws InterruptedException { Student studentObject = new Student(); studentObject.display(); } }
hello
https://sites.google.com/site/javaee4321/java/ThisKeyWordDemoMethodApp.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/ThisKeyWordDemoMethodApp
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/f95cef6f929a55d126484d6f51e7b129a718c586/BasicJava/ThisKeyWordDemoMethodApp/?at=master
See also:
No comments:
Post a Comment