IntelliJ 结构搜索泛型
IntelliJ structural search generics
可能是我不懂IntelliJs结构搜索不行。
我想找到所有匹配以下示例模式的事件:
Map<String, String> mapper = new HashMap<>()
我的无效方法是
Map<$a$,$b$> $c$ = new HashMap<>()
结构搜索能找到它吗?如何找到它?
使用像下面这样的模式对我有用:
$map$<$a$,$b$> $c$ = new $hashmap$<>();
$地图$text/regexp: java\.util\.Map
$hashmap$ text/regexp: java\.util\.HashMap
我不确定为什么您的模式不起作用。这可能是一个错误。
可能是我不懂IntelliJs结构搜索不行。
我想找到所有匹配以下示例模式的事件:
Map<String, String> mapper = new HashMap<>()
我的无效方法是
Map<$a$,$b$> $c$ = new HashMap<>()
结构搜索能找到它吗?如何找到它?
使用像下面这样的模式对我有用:
$map$<$a$,$b$> $c$ = new $hashmap$<>();
$地图$text/regexp: java\.util\.Map
$hashmap$ text/regexp: java\.util\.HashMap
我不确定为什么您的模式不起作用。这可能是一个错误。