In my Java application, I use a third-party library.
However, I found something strange, there are some nested packages, and some classes whose name may be the same
You need to do this:
com.xx.a.a ma = new com.xx.a.a();
Or import the package:
import com.xx.a; a ma = new a();