在数据结构代码的编写中,我选用了优秀的编辑器Sublime Text 3,但是在实现C++代码的编译和运行上费了一番周折,接下来我贴出C++编译系统的代码,供各位参考。
编译后是在弹出的CMD命令行窗口运行的,因为若在Sublime Text 3运行则可能无法实现输入等操作(?)。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
"encoding": "utf-8",
"working_dir": "$file_path",
"shell_cmd": "g++ -Wall -std=c++11 -fexec-charset=GBK \"$file_name\" -o \"$file_base_name\"",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"selector": "source.c++",
"variants":
[
{
"name": "Run",
"shell_cmd": "g++ -Wall -std=c++11 -fexec-charset=GBK \"$file\" -o \"$file_base_name\" && start cmd /c \"\"${file_path}/${file_base_name}\" & pause\""
}
]
}
|
以上代码也避免了因编码问题导致的乱码现象。
这篇文章就是小编为大家带来的Sublime Text 3 实现C++代码的编译和运行示例的全部内容了,希望大家喜欢哦~
原文链接:http://www.cnblogs.com/deepcho/archive/2017/09/21/sublimetext3-cpp-program.html