Java the This keyword

Source: Internet
Author: User

This use range  

1. The This keyword used in the method definition of a class represents a reference that invokes the method object .

2. Use the keyword this when you must indicate who is currently using the method's object .

3. Sometimes this can be used to deal with the names of member variables and parameters in a method.

4, this can be seen as a variable whose value is a reference to the current object .

Note: This istypically present in the method when the method is not tuned. Do not know this point to the specific object.

When an object calls a method with this, the this points to the object that called the method.

Program code:

 Public classtestthis{Private inti;  PublicTestthis (inti) {         This. i =i; }    Privatetestthis Increment () {i+ = 1; return  This; }         Public Static voidMain (string[] args) {testthis mtestthis=NewTestthis (100);    System.out.println (Mtestthis.increment (). Increment (). i); }}

Output results: 102

Java the This keyword

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.