I entered this in Eclipse and expected it to be the wrong syntax but it is allowed. Can someone please explain what is happening here? Should the Float and Integer keyword not be reserved? What type of assignment is this?
Number Float = 99.455f;
Number Integer = 2;

FloatandIntegerthere will just end up being variable names (as several of the answers point out). Try it yourself: Copy this to a file and run it throughjavac: pastie.org/5710476 (If that's your downvote on the question, you might reconsider.) – T.J. Crowder Jan 17 at 18:57