Browsed by
Tag: this

Displaying Profile Using Java “super” and “this” Keywords

Displaying Profile Using Java “super” and “this” Keywords

Recently, I was learning about Java super and this Keyword. So, I wanted to share this knowledge with you with my small program that explained a lot about using them. public class CheckingSuper { public static void main(String args[]) { Student student = new Student(); student.printIt(); } } class Person { public String name = “Saugat Bhattarai”; public void printIt() { System.out.println(“Hello this is me ” + name); } } class Student extends Person {…

Read full Article Read More