07 2016 档案
摘要:1.快速进入实现类: Command + Alt+B 2.全局查找: Shift + Shift 3.类继承关系: Ctrl + H 4.在继承层次上跳转则用 Command + B / Command+Alt+B分别对应父类或父方法定义和子类或子方法实现 5.查看当前类的所有方法 Command + F12 6.查看类或方法在哪里使用 Alt+F7 7.Alt + Left/Rig...
阅读全文
摘要:1.CMD+SHIFT+P ---> ADD REPOSITORY 输入 github 上的地址 https://github.com/akira-cn/sublime-gbk 2.CMD+SHIFT+P ---> INSTALL PACKAGE 找到刚才的插件回车安装
阅读全文
摘要://定义map function Map() { this.container = {}; } //将key-value放入map中 Map.prototype.put = function(key, value) { try { if (key != null && key != "") this.container[key] = value; } catc...
阅读全文