Usage of this in Java

Source: Internet
Author: User
  This is used in a class, in a constructor or in a general function, or               when a variable inside a function has the same variable as the property (the variable within the Class) public class Thisdemo {      int number=0;    Thisdemo increment () {         number++;///         return this;    }    private void print () {         System.out.println ("number=" +number);    public static void Main (string[] args) {        thisdemo tt=new thisdemo ();         Tt.increment (). Increment (). Increment (). print ();}    } Results Number=3;public class Thisdemo {      int number=0;    Thisdemo increment () {          int number=1;         this.number++;///         return this;    }    private void print () {         System.out.println ("number=" +number);    public static void Main (string[] args) {        thisdemo tt=new thisdemo ();         Tt.increment (). Increment (). Increment (). print ();}    } The output result is number=3;

Usage of this in Java

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.