Visual Studio Code配置技巧 VS Code是啥 Visual Studio Code(以下简称 VS Code) 是一个免费.开源.跨平台的由微软开发的程序编辑器.它是用 TypeScript 编写的,并且采用 Electron 架构.官网是 https://code.visualstudio.com/ . 实际上它本身没有什么用,只是一个普通的,有代码高亮的编辑器.它的亮点是支持扩展,各种各样的扩展,使得他成为了OIers所喜爱的编辑器. 下载 点我下载 你都弄OI了,安装过…
整理JavaScript方面的一些技巧.比較有用的函数,常见功能实现方法,仅作參考 变量转换 //edit http://www.lai18.com var myVar = "3.14159", str = ""+ myVar,// to string int = ~~myVar, // to integer float = 1*myVar, // to float bool = !!myVar, /* to boolean - any string with le…
这些小技巧之所以特别,是因为这些信息通常吧不能在C++书籍或者网站上找到.比如说,成员指针,即使对于高级程序员也是比较棘手,和易于产生bugs的,是应该尽量避免的问题之一. <翻 by凌云健笔> What makes these tips special is that the information they provide usually cannot be found in C++ books or Web sites. For example, pointers to members…