如何在源代码中搜索“*”(乘法运算符)?
不是星号字符(在评论等中)。只是运算符 *!
/** foo method */ // <- this should not be in search results
public int foo(int i, int j)
{
/* compute the values */ // <- this should not be in search results
return i * j; // <- this should be in search results
}