iT邦幫忙

2022 iThome 鐵人賽

DAY 23
0
自我挑戰組

30天Java由淺入深系列 第 23

Day 23 : Inheritance ( 3 )

  • 分享至 

  • xImage
  •  

this & super

This chapter will continue to introduce advanced topics related to inheritance. If you have any questions about the previous content, you can go back and review it.
this and super are two object keywords commonly used in inheritance.
The usage of the two is roughly the same, but the main difference is in the things they represent:

this represents accessing the properties of the “own class”; super represents accessing the properties of the “parent class”

The advantage of using these two keywords is that

  1. when the inheritance relationship is complex, using this reduces the possibility of calling errors.
  2. When implementing large projects, the content of each constructor can be modified independently, with the “extending” function of inheritance.

this

The declaration of this is in the following format:

this.attribute of its own class (argument passed in);
  • Here, we will first familiarize ourselves with the scope and usage of this access through the mutual calls between constructors. The following paragraph will then combine this with the concept of inheritance:
/*First File : Student.java*/
    class Student{
	String name;
    int group; 
	char gpa;
	static int count = 0;

	Student(){
		name = "Unknowen";
		group = 1;
		gpa = 'C';
		count++;
	}

	Student(String name){
		this();                //初始化內容
		this.name = name;
	}
	
	Student(String name, int group){
		this(name);
		this.group = group;
	}

	Student(String name, int group, char gpa){
		this(name,group);
		this.gpa = gpa;
	}

	void printout_info(){
		System.out.println("Student ID : " + count);
		System.out.println("Student name : " + name);
		System.out.println("Student group : " + group);
		System.out.println("Student gpa : " + gpa);
	}
}
/*Second File : Grade.java*/
class Grade{
	public static void main(String[] args){
		Student s1 = new Student();
		s1.printout_info();

		Student s2 = new Student("c");
		s2.printout_info();

		Student s3 = new Student("ch",2);
		s3.printout_info();

		Student s4 = new Student("chi",3,A);
		s4.printout_info();
	}
}

Output :
https://ithelp.ithome.com.tw/upload/images/20221008/201512160p0HkvvUss.png

  • This program passes arguments to Student by calling different constructors in the main function. It can be observed that whenever we create a constructor and call it, it will initialize the content through this.

this is the keyword that represents “its own class”


super

super is declared in the same way as this. In this section, we combine the two keywords and use inheritance observation.

class Sum
{
   protected int num;
   protected int total;
   public void show_num(){
      System.out.println("num = " + num);
   }

   Sum(int a, int b){
      this.total = a + b;
   }
		
   void printout_sum(){
	  System.out.println(this.total);
   }
}

class Add extends Sum
{
   Add(int a, int b){
      super(a,b);
   }

   int num;
   public void show_num(){
      super.num = 126;
	  this.num = 136;
      System.out.println("num = "+ num);
      super.show_num();
   }
}

public class Main{
   public static void main(String args[]){
      Add new_obj = new Add(46,29);
	  new_obj.printout_sum();
      new_obj.show_num();
   }
}

Outcome
https://ithelp.ithome.com.tw/upload/images/20221008/20151216O0XnMsav6f.png

  • Program analysis:
  1. We can directly see the show_num function in the subclass. super sets the variable in the parent class, and this sets the variable in this class. Therefore, the num printed on the next line is the variable in the subclass, and then the parent class.
  2. In this program, we use the constructor and pass the argument to the parent class through super to print it.

super is the keyword for “parent class”.


Resource:[Java]super() 與 this()Java備忘筆記


上一篇
Day 22 : Inheritance (2)
下一篇
Day 24 : Abstraction
系列文
30天Java由淺入深30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言