Page 1 of 1

About Question enthuware.ocpjp.i.v11.2.3011 :

Posted: Sat Jan 09, 2021 3:58 am
by teodorj

Code: Select all

//In file module-info.java:
module cars{
    exports com.car;
}

module trucks{
    requires cars;
} 
I choose this option because I think they are in different module-info files. Nice trick :lol: