假设我有
try
{
MyFunctionCall()
{---------------}
}
catch----------------------
我想用 MyFunctionCall 替换所有具有类似 try 块的函数;前三行应该与其他代码匹配,例如
try
{
ReplacedFunction()
{---------------}
}
catch----------------------
注意:MyFunctionCall() 可以出现在一些没有 try 块的代码或其他调用中。