国产精品高清一区二区三区不卡-国产精品一区二区三区免费视频-日韩免费高清一级毛片-亚洲欧美一区二区三区国产精品-日韩欧美一区二区三区不卡视频-亚欧免费视频一区二区三区-亚洲欧美日韩一区成人-欧美日韩视频综合一区无弹窗-精品日韩在线视频一区二区三区-国内精品视频一区二区三区

你好,歡迎進入江蘇優(yōu)軟數(shù)字科技有限公司官網(wǎng)!

誠信、勤奮、創(chuàng)新、卓越

友好定價、專業(yè)客服支持、正版軟件一站式服務提供

13262879759

工作日:9:00-22:00

Mac電腦安裝Sublime Text指南

發(fā)布時間:2023-06-06

瀏覽次數(shù):0

sublime text教程_sublime text使用教程_sublime text使用教程

【前言】

之前推薦過DevC++安裝教程(鏈接附在文末)。 不幸的是,只有一個版本的 DevC++。 如果您使用的是 Mac 筆記本,則需要使用其他軟件。 本文將介紹如何在Mac筆記本上安裝Text軟件并配置C++編譯環(huán)境。

Text 是一個輕量級的文本編輯器,支持多種語言的句子高亮和代碼補全。 具有高度的可擴展性和 Vim 模式。 Text具有漂亮的用戶界面和強大的功能,例如代碼縮略圖、插件、代碼片段等。Text是一個跨平臺的編輯器,支持Linux、等操作系統(tǒng)。 本文只介紹Mac系統(tǒng)的安裝步驟。 想在系統(tǒng)下安裝的朋友可以上網(wǎng)查相關(guān)手冊。

【教程】

1個

安裝文本

到官網(wǎng)下載Text安裝包

sublime text教程_sublime text使用教程_sublime text使用教程

找到下載好的安裝包,雙擊解壓

解壓后看到【Text.app】,將其拖入應用程序中,然后雙擊打開

sublime text使用教程_sublime text使用教程_sublime text教程

打開后會有提示,選擇【打開】

sublime text教程_sublime text使用教程_sublime text使用教程

打開后,進入Text的空白頁面。

sublime text教程_sublime text使用教程_sublime text使用教程

2個

安裝 C++ 編譯器

在空白頁面,先保存文件,確定文件名和存放位置。

sublime text使用教程_sublime text使用教程_sublime text教程

注意文件名要加上“.cpp”后綴! 然后點擊【保存】保存。

sublime text教程_sublime text使用教程_sublime text使用教程

保存后編譯代碼。

#include using namespace std;
int main(){ cout << "OK" << endl; return 0;}

sublime text教程_sublime text使用教程_sublime text使用教程

編譯運行,使用快捷鍵[+B],選擇C++File-Run

sublime text使用教程_sublime text使用教程_sublime text教程

彈出窗口,選擇【確定】

sublime text教程_sublime text使用教程_sublime text使用教程

提示安裝sublime text使用教程,選擇【】

sublime text使用教程_sublime text教程_sublime text使用教程

選擇【同意】

sublime text使用教程_sublime text教程_sublime text使用教程

等待安裝...

sublime text使用教程_sublime text教程_sublime text使用教程

安裝完成

sublime text使用教程_sublime text使用教程_sublime text教程

再次使用快捷鍵[+B]編譯運行,可以看到下方彈出運行結(jié)果。

注意使用這種編譯方式很難進行輸入交互,所以需要繼續(xù)配置C++終端才能運行。

sublime text使用教程_sublime text教程_sublime text使用教程

3個

配置C++終端運行

點擊【工具】->【構(gòu)建】->【新建】

sublime text使用教程_sublime text教程_sublime text使用教程

將以下代碼復制粘貼到軟件中

(也可以打開此網(wǎng)址獲?。?/p>

{    "cmd":    [        "bash",        "-c",        "g++ '${file}' -std=c++11 -stdlib=libc++ -o '${file_path}/${file_base_name}'"    ],    "file_regex": "^(..{FNXX==XXFN}*):([0-9]+):?([0-9]+)?:? (.*)$",    "working_dir": "${file_path}",    "selector": "source.c, source.c++",    "variants":    [        {            "name": "Run",            "cmd":            [                "bash",                "-c",                "g++ '${file}' -std=c++11 -stdlib=libc++ -o '${file_path}/${file_base_name}' && open -a Terminal.app '${file_path}/${file_base_name}'"            ]        }    ]}

sublime text使用教程_sublime text使用教程_sublime text教程

使用快捷鍵【+S】保存文件,編輯文件名為【C++.-bulid】

sublime text使用教程_sublime text使用教程_sublime text教程

保存后關(guān)閉文件,返回【apple.cpp】文件sublime text使用教程,使用快捷鍵【+Shift+B】編譯運行,選擇【C++-Run】。

注意,使用[+B]會默認為之前編譯運行的選項,如果需要修改,使用[+Shift+B];

如果需要終端操作,選擇【C++-Run】;

如果需要文件輸入輸出,選擇【C++File-Run】。

sublime text教程_sublime text使用教程_sublime text使用教程

sublime text使用教程_sublime text教程_sublime text使用教程

4個

編譯器

新節(jié)目

選擇【文件】->【新建文件】,快捷方式為【+N】

sublime text使用教程_sublime text使用教程_sublime text教程

*注意:

新建的文件需要先保存,后綴名要加“.cpp”,并設置保存位置

快捷鍵【+S】

sublime text使用教程_sublime text教程_sublime text使用教程

sublime text使用教程_sublime text使用教程_sublime text教程

保存并開始編程! 一定要先保存! 一定要加上.cpp后綴!

5個

其他

Text還有豐富的插件,個性化設置讓你的編程如虎添翼! 有興趣的朋友可以在熟悉軟件后上網(wǎng)搜索相關(guān)資料進行配置! 以后我們會分享更多編程工具的使用方法!

.

sublime text使用教程_sublime text使用教程_sublime text教程

如有侵權(quán)請聯(lián)系刪除!

13262879759

微信二維碼