Intelli IDEA ultimate破解方法
今天装了个Intelli IDEA,ultimate版本,使用网上方法破解了,破解方法参考网址 http://appcode.aliapp.com/idea.jsp
Intelli IDEA有个vim插件IdeaVim,非常好用,很强大,插件安装方法:
File->Setting->Plugin->搜索vim进行安装。
Intelli IDEA有个postfix completion功能,比如有个List<String> lst;想要for循环变量lst,可以输入lst.for然后按tab键,会自动生成for循环代:
String test[] = {"hello", "world", "yang"};
test.for
按tab键,会自动变成
String test[] = {"hello", "world", "yang"};
for (String s : test) {
}
这只是举例,还有其他功能,http://blog.jetbrains.com/idea/2014/03/postfix-completion/