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.
我正在维护一个旧的代码库。其中一个类有这个方法:
someMethod(Param1 a, Param2 b, Param3 c, Param4 d){...};
这个方法在很多java类中被广泛使用。像这样:
foo.someMethod(valueA, null, valueC, null);
如何找到我的代码库中的哪些 Java 类正在使用此方法,而最后一个参数未作为 null 传入?