I want to create a java package name where one of the elements is the word "null".
Java tells me this is not a valid package:
package org.null.thing;
public class Foo {
public static int addThing(int a, int b) {
return a + b;
}
}
The error I get is:
error: <identifier> expected
package org.null.thing;
^
Where is this defined? What is the reason for this?
The problem is that null is simply not allowed as "identifier":
Thus
org.null.thing
is as invalid asor.int.string
or other interesting ideas.