this关键字在Java中怎么用

  作者:bea

1.this关键字只能在方法内部使用,表示对“调用方法的那个对象”的引用。 2.this关键字的使用:只有需要明确指出对当前对象的引用时,才需要用该关键字,不要在不必要的地方使用,会造成混乱。例如: publicclassUser{ publicUserincrement() { returnthis;//返回调用该方法的那个对象 } }
1.this关键字只能在方法内部使用,表示对“调用方法的那个对象”的引用。
2.this关键字的使用:只有需要明确指出对当前对象的引用时,才需要用该关键字,不要在不必要的地方使用,会造成混乱。例如:
publicclassUser{ publicUserincrement() { returnthis;//返回调用该方法的那个对象 } }
publicclassUser{ publicUserincrement() { returnthis;//返回调用该方法的那个对象 } }
例如,一个外部的工具方法,实现了给苹果削皮的功能:先传入一个苹果,再返回这个削过皮的苹果。
//工具类: publicclasspeeler { staticApplepeel(Appleapple) { //removepeel returnapple;//peeled } }
//工具类: publicclasspeeler { staticApplepeel(Appleapple) { //removepeel returnapple;//peeled } }

//工具类: publicclasspeeler { staticApplepeel(Appleapple) { //removepeel returnapple;//peeled } }

//苹果类: publicclassApple { ApplegetPeeled(){returnpeeler.peel(this);}//返回了调用该方法的对象 }
//苹果类: publicclassApple { ApplegetPeeled(){returnpeeler.peel(this);}//返回了调用该方法的对象 }
//person类: piblicPerson{ publicvoideat(Appleapple){ Applepeeled=apple.getPeeled(); System.out.println("over"); } }
//person类: piblicPerson{ publicvoideat(Appleapple){ Applepeeled=apple.getPeeled(); System.out.println("over"); } }
publicclassPassingThis(){ publicstaticvoidmain(String[]arges){ newPerson().eat(newApple()); } } 有用  |  无用

猜你喜欢