this和super的使用

this 与 super 用途


一、this用途:

一是引用隐式参数,二是调用该类其他的构造器。

二、super用途:

一是调用超类的方法,二是调用超类的构造器

三、用法举例


[java]  view plain  copy
  1. package com.test.xqh;  
  2.   
  3. public class Manage extends Employee {  
  4.   
  5.     private String sex;  
  6.   
  7.     public Manage(String name, int age, String sex) {  
  8.         super(name, age); // super用途2,调用超类的构造器  
  9.         this.setSex(sex);  
  10.     }  
  11.   
  12.     public String getName() {  
  13.         return super.getName() + "HHHH"// super用途1, 调用超类的方法  
  14.     }  
  15.   
  16.     public void setSex(String sex) {  
  17.         this.sex = sex;  
  18.     }  
  19.   
  20.     public String getSex() {  
  21.         return sex;  
  22.     }  
  23.   
  24.     public void say() {  
  25.         System.out.println("***");  
  26.     }  
  27.   
  28.     public static void main(String[] args) {  
  29.         Employee[] e = new Employee[2];  
  30.         e[0] = new Employee("张三"22);  
  31.         e[1] = new Manage("李四"22"男");  
  32.         System.out.println(e[0].getName());  
  33.         System.out.println(e[1].getName());  
  34.     }  
  35.   
  36. }  
  37.   
  38. class Employee {  
  39.     private String name;  
  40.     private int age;  
  41.   
  42.     public Employee(String name, int age) {  
  43.         this(); // this用途2,调用该类的构造器(此例为默认的构造器)  
  44.         this.name = name; // this用途1,引用隐式参数  
  45.         this.age = age; // this用途1,引用隐式参数  
  46.     }  
  47.   
  48.     public Employee() {  
  49.   
  50.     }  
  51.   
  52.     public String getName() {  
  53.         return name;  
  54.     }  
  55.   
  56.     public void setName(String name) {  
  57.         this.name = name;  
  58.     }  
  59.   
  60.     public int getAge() {  
  61.         return age;  
  62.     }  
  63.   
  64.     public void setAge(int age) {  
  65.         this.age = age;  
  66.     }  
  67.   
  68. }  




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值