A Developer Gateway To IT World...

Techie Uncle Software Testing Core Java Java Spring C Programming Operating System HTML 5 Java 8 ES6 Project

use of this keyword(here local variable call because var name is same in class and method)

//use of this keyword(here local variable call because var name is same in class and method)
class seven
{
    int a=10;
    int b=21;
    void add(int a , int b)
    {
        System.out.println(a+b);
        System.out.println(this.a + this.b);
    }
    public static void main(String args[])
    {
        seven e=new seven();
        e.add(7,8);
        //System.out.println(e.a);
        //System.out.println(e.b);
    }

}


output:


LEARN TUTORIALS

.

.