I am a newbie to Java and just starting to learn the language but I am hitting a few snags along the way and I was hoping you can give me some direction on an issue I am having.
I know Java is case sensitive when it comes to things like variables and some reserved words. However I cannot wrap my head around which ones to use lower case and which ones to use upper case. For example I know you have to use lower case on class. But for System you have to use capital S or it will error during the compile phase.
Can someone give me some help understanding when to use upper and when to use lower case for java commands? Is everything lowercase unless I reference another object and then does it depend if that object is saved with and uppercase or lowercase name?
ClassNames, staticFINAL_CONSTANTSandtheRest.