In Eclipse, what is a "Package" explained in .NET terms?
+2
A:
A package in java is most comparable to a namespace in .NET.
EDIT:
As pointed out by R0MANARMY, in Java the folder structure & where classes are dictate which package they belong to. In .NET classes can be marked as belonging to any namespace regardless of the folder they are in.
filip-fku
2010-05-30 22:40:05
But without the miserably nested folder structure.
R0MANARMY
2010-05-30 22:40:41
@R0MANARMY: Which make a Java class very easy to find...
Pascal Thivent
2010-05-30 22:57:37
@Pascal Thivent: If you're looking for them on the file system, yes. It also make refactoring and moving classes between namespaces a pain in the ass. Six of one, half a dozen of the other really.
R0MANARMY
2010-05-30 23:05:21