By: aathishankaran in Java Tutorials on 2007年03月05日 [フレーム]
As you know, it is illegal in java to declare two local variables with the same name inside the same or enclosing scopes. Interestingly, you can have local variables, including formal parameters to methods, which overlap with the names of the class instance variables. We can see the following example for this explanation.
class Sum {
double item1;
double item2;
double item3;
Sum ( double i1, double i2, doublei3) {
item1 = i1;
item2 = i2;
item3 = i3;
}
double add() {
return item1 + item2 + item3;
}
}
class Sumcalc {
public static void main(string args[]) {
Sum sum1 = new Sum(10, 20, 15);
double value;
value = sum1.add();
System.out.println("Value is" + value);
}
}
However, when a local variable has the same name as an instance variable, the local variable hides the instance variable. This is why item1, item2, and item3 were not used as the names for the parameters to the Sum() constructor inside the Sum class. If they had been, then item1 would have referred to the formal parameter, hiding the instance variable item1.
While it is usually easier to simply use different names, there is another way around this situation. Because this lets you refer directly to the object, you can use it to resolve any name space collisions that might occur between instance variables and local variables.
For example, here is another coding of Sum(), which uses item1, item2, and item3 for parameter names and then uses this to access the instance variables by the same name:
Sum(double item1, double item2, double item3) {
this.item1 = item1;
this.item2 = item2;
this.item3 = item3;
}
word of caution: The use of this in such a context can sometimes be confusing and some programmers are careful not to use local variables and formal parameter names that hide instance variables. Of course, other programmers believe the contrary that it is a good convention to use the same names for clarity, and use this to overcome the instance variable hiding. It is a matter of taste which approach you adopt.
Although this is of no significant value in the examples just shown, it is very useful in certain situations.
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Most Viewed Articles (in Java )
Step by Step guide to setup freetts for Java
Open a .docx file and show content in a TextArea using Java
concurrent.Flow instead of Observable class in Java
DateFormat sample program in Java
Simple Port Scanner application using Java
Using the AWS SDK for Java in Eclipse
Read a file having a list of telnet commands and execute them one by one using Java
Calculator application in Java
Latest Articles (in Java)
Read a file having a list of telnet commands and execute them one by one using Java
Open a .docx file and show content in a TextArea using Java
Step by Step guide to setup freetts for Java
Of Object, equals (), == and hashCode ()
Using the AWS SDK for Java in Eclipse
DateFormat sample program in Java
concurrent.Flow instead of Observable class in Java
Calculator application in Java
Sending Email from Java application (using gmail)
Read a file having a list of telnet commands and execute them one by one using Java
Open a .docx file and show content in a TextArea using Java
Step by Step guide to setup freetts for Java
Of Object, equals (), == and hashCode ()
Using the AWS SDK for Java in Eclipse
DateFormat sample program in Java
concurrent.Flow instead of Observable class in Java
Calculator application in Java
Sending Email from Java application (using gmail)
© 2023 Java-samples.com
Tutorial Archive: Data Science React Native Android AJAX ASP.net C C++ C# Cocoa Cloud Computing EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Trends WebServices XML Office 365 Hibernate
Latest Tutorials on: Data Science React Native Android AJAX ASP.net C Cocoa C++ C# EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Cloud Computing WebServices XML Office 365 Hibernate