在我现在正在调试的代码中,我看到 Stringbuilder 的 append 方法被重复调用。
我想替换所有通过任何字符串参数传递的追加append(String str)
事件append(Mycustomfunction(String str))
append 也可以采用多种类型的参数,但我只想更改那些具有 String 参数的参数。
无论如何要更有效地执行此操作,然后在 1000 多次出现时手动插入此行?
编辑:添加示例示例
a.append("My Name")
a.append(result.getString("something"))
a.append(2)
a.append(true)
我只想将前两个事件更改为
a.append(Myfunction("My Name"));
a.append(Myfunction(result.getString("something")));
a.append(2);
a.append(true);