I just started learning Java and I wrote a class to test using static fields. Everything works fine but in Eclipse I see an icon which when hovered comes out as: \"The stati
Static members should be accessed statically, i.e., ClassName.memberName.
Non-static access is allowed though (objectName.memberName) but is discouraged.