Index of /~lucia/courses/ITI1121-15/labs/solutions/t02

Icon  Name                    Last modified      Size  Description
[PARENTDIR] Parent Directory - [TXT] TestFindAndReplace.java 2015-01-11 16:44 7.2K [TXT] Utils.java 2015-01-11 16:44 2.2K [TXT] Rational.java 2015-01-11 16:44 1.9K [TXT] TestAll.java 2015-01-11 16:44 1.6K [TXT] StudentInfo.java 2015-01-11 16:44 1.0K [TXT] TestRational.java 2015-01-11 16:44 247
Referring to the class Counter below, the keyword this can be omitted without affecting the compilation or execution of the program. 

True or False

public class Counter {  
    private int value = 0;  
    public Counter( int initialValue ) {  
        this.value = initialValue;  
    }  
}

The answer is true. The name of the instance variable value is not
conflicting with the name of the parameter.