Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个同名的类位于不同的模块中。当使用反射获取类的方法时,它只找到第一个及其方法。如何指定是否查找类以反映在另一个模块(另一个文件夹)?
考虑使用命名空间来避免名称冲突。
/application/moduleA/myclassname
/application/moduleB/myclassname
或为您的类名附加前缀。
moduleA_myclassname
moduleB_myclassname
只需指定完整的限定名称。