Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using a Calendar to gain access to the current year.

This is my code...

import java.util.Calendar;
Calendar c = c.getInstance();
int year = c.get(c.YEAR);

The code compiles and runs fine, but it displays a warning message saying "Warning, accessing a static field" Is there something wrong, or should I be doing something better?

share|improve this question

3 Answers

up vote 4 down vote accepted

Use Calendar.getInstance() and Calendar.YEAR, static fields should not be accessed using instance objects.

share|improve this answer
1  
It's bad practice because it makes it less obvious that you are accessing a static field. – Abdullah Jibaly Jan 14 '11 at 17:43
1  
You missed the more obvious c.getInstance(). – Erick Robertson Jan 14 '11 at 18:23
Someone else mentioned it in their and my answer is pretty generic, pretty sure anyone can make the logical step. – Abdullah Jibaly Jan 14 '11 at 18:39
1  
@Erick updated it to add getInstance – Abdullah Jibaly Jan 14 '11 at 18:42

Instead of doing Calendar c = c.getInstance(); , do this Calendar c = Calendar.getInstance();. The getInstance() method is a static method of Calendar class and that is why you are getting the warning.

ADD

The same goes for Calendar.YEAR

share|improve this answer

It warns you because static fields are accessed using the compile time type and not the runtime type of the object, which can cause hard to find bugs.

Example:

public class AAA{
    public static String HELLO = "HI";
}
public class BBB extends AAA{
    public static String HELLO = "Hello World";
}

AAA test = new BBB();
System.out.println(test.HELLO); //Will print String from AAA 
                                //instead of "Hello World"

Without the static it will print "Hello World".

To prevent these bugs you should always access static variables by the class they are declared in instead of using an instance. The compiler warns you since there is no good reason not to use the class-name.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.