首页 > 其他 > 详细

Intelli IDEA ultimate破解方法

时间:2015-10-10 18:32:13      阅读:307      评论:0      收藏:0      [点我收藏+]

今天装了个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/

Intelli IDEA ultimate破解方法

原文:http://www.cnblogs.com/yjm-yang/p/4867958.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!