Programming Tutorials

Comment on Tutorial - this keyword in Java By Jagan



Comment Added by : Gangireddy

Comment Added at : 2012-02-15 08:35:18

Comment on Tutorial : this keyword in Java By Jagan
""this"" is a implicit keyword or object, created by JVM and supplied to every java program for Two purposes. They are...
1). ''this'' always contains current class object values.
2). ""this "" diffrentiates between formal parameters and data members to avoid ambiguity to JVM.


View Tutorial