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()); } } 有用 | 无用
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()); } } 有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- 四种办法使用Java解析XML文件
- Java web开发字符编码总结
- Java web怎样实现异步编程
- 如何调度Java web开发中的任务
- Java实现文件的删除、拷贝和递归
- J2ME应用程序开发注意事项
- 如何用Java操作Excel并给jxl加边框
- 总结Java程序运行时常见的异常
- 说说Java.util包中提供的各个类
- 解决JSP中文字符乱码问题
- 实例:Java获取指定日期的前后天
- Java DTD dom解析受XML的约束
- 实例:Java遍历文件夹
- Java路径分类和使用注意要点
- 浅谈J2EE框架设计技术
- 代码生成工具在Java开发中的作用
- Java编程如何节省内存效率高
- 何时被创建Java对象实例
- 怎样确保无线J2ME的安全