Linux教程網
this 關鍵字用在構造方法中。
[java]
- package com.han;
-
- /**
- * this 關鍵字用在構造方法中。
- * @author han
- *
- */
- public class ThiSUSE {
-
- public ThisUse() {
- this("this調用無參構造方法之前先調用有參構造方法");
- //it is equivalent to : new ThisUse("this調用無參構造方法之前先調用有參構造方法");
- System.out.println("this調用無參構造方法");
- }
- public ThisUse(String name) {//構造方法重載
- System.out.println(name);
- }
-
- @SuppressWarnings("unused")
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- ThisUse object=new ThisUse();
- }
-
- }
Copyright ©
Linux教程網 All Rights Reserved