I have two jars that have the same package structure. And they have a class that have the same name. like..
lib1.jar
- A.class
- Same.class
lib2.jar
- B.class
- Same.class
Actually, I don't use Same.class but it is used by class A and B
Then, what happened?
If lib1.jar is loaded first, only Same.class in lib1.jar is used for both A.class and B.class?
or A & B will use different Same.class in their own jar?