This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
In Java 1.0 and Java 1.1 the domain extensions com, edu, org, net, etc., were capitalized by convention, so the library would appear: COM.abc.def. Partway through the development of Java 2, however, it was discovered that this caused PROBLEMS, and so now the entire package name is lowercase What kind of problem ? Does this mean that writing NameSpace in CAPS is an error ? Regards, Arijit
Regards,<br /> Arijit
Dinesh Kumar
Ranch Hand
Joined: Jul 03, 2002
Posts: 54
posted
0
I don't think it's an error Arijit. It probably means that java converts them to lower case on its own. The problems would occur in systems like Unix / Linux etc. where the case of package names matters as the system would treat a folder named "com" and another one named "COM" as being two different folders. ...Dinesh
Arijit Ghosh
Ranch Hand
Joined: Feb 01, 2002
Posts: 174
posted
0
Thanks Dinesh
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12268
1
posted
0
In Java 1.0 and Java 1.1 the domain extensions com, edu, org, net, etc., were capitalized by convention, so the library would appear: COM.abc.def. Partway through the development of Java 2, however, it was discovered that this caused PROBLEMS, and so now the entire package name is lowercase
I worked alot with Java 1.0 and Java 1.1 and I don't recall ever seeing that usage anywhere. Where did you see it? Bill