启动vim打开文件时出错: The ycmd server SHUT DOWN (restart with ':YcmRestartServer'). YCM core library compiled for Python 2 but loaded in Python 3. Set the 'g:ycm_server_python_interpreter' option to a Python 2 interpreter path. 原因: 参照官网github上的文档编译命令:cmake -…
在VC 6 中,i的作用域范围是函数作用域,在for循环外仍能使用变量i 即: for (int i = 0; i < n; ++i) { //…… } cout<<i<<endl; 这样则编译通过: for (int i = 0; i < n; ++i) { //…… } int i = 5; 这样则编译出错. 在DEV C++ 中,i的作用域仅限于for循环,即: for (int i = 0; i < n; ++i) { …