1 / 34

基本軟體實驗 Software Laboratory

基本軟體實驗 Software Laboratory. 建立控制台 開發環境. 建立環境設定檔 vc-console.bat. 編輯以下 vc-console.bat 檔案,置於 Learn-C 資料夾中. @echo off rem 設定 Learn-C 作為目前資料夾 , 請依實際情況修改 cd “C:Documents and SettingsaimmMy DocumentsLearn-C" rem 設定目前所在磁碟機 , 請依實際情況修改 C: rem 依據你的喜好設定提示字元 prompt $g rem

heidi
Download Presentation

基本軟體實驗 Software Laboratory

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 基本軟體實驗Software Laboratory 建立控制台 開發環境

  2. 建立環境設定檔vc-console.bat 編輯以下vc-console.bat檔案,置於Learn-C資料夾中 @echo off rem 設定Learn-C作為目前資料夾,請依實際情況修改 cd “C:\Documents and Settings\aimm\My Documents\Learn-C" rem 設定目前所在磁碟機,請依實際情況修改 C: rem 依據你的喜好設定提示字元 prompt $g rem echo 歡迎進入VC6.0控制台,你現在所在的資料夾是 rem cd

  3. 建立控制台捷徑

  4. cmd /K “C:\Documents and Settings\aimm\My Documents\Learn-C\vc6-console" 建立控制台捷徑

  5. 雙擊進入VC6.0控制台

  6. 基本軟體實驗Software Laboratory IDE (Integrated Development Environment) 整合式發展環境

  7. Visual C++ 6.0  IDE

  8. Visual C++ 6.0  IDE

  9. 建立一專案

  10. 建立控制台類型專案

  11. 選擇專案存放資料夾

  12. 選擇專案存放資料夾

  13. 選擇專案存放資料夾

  14. 確定建立控制台類型專案

  15. 選擇空專案

  16. 專案生成資訊

  17. HelloWorld_IDE專案

  18. HelloWorld_IDE專案生成之檔案

  19. HelloWorld_IDE專案生成之檔案

  20. 撰寫程式  新增C程式檔案

  21. 撰寫程式  新增C程式檔案

  22. 編輯程式  main.c

  23. 編輯程式  main.c

  24. 建構執行檔  HelloWorld_IDE.EXE

  25. 建構執行檔  HelloWorld_IDE.EXE

  26. 執行HelloWorld_IDE.EXE

  27. 執行HelloWorld_IDE.EXE

  28. 基本軟體實驗Software Laboratory Program Debug 程式除錯

  29. Visual C++ 6.0  Debug

  30. Visual C++ 6.0  Debug

  31. 建置工具列 • Compile (Ctrl+F7) – 編譯目前檔案 • Build (F7) – 建置專案 • Stop Build (Ctrl+Break) – 停止建置專案 • Execute Program (Ctrl+F5) – 執行程式 • Go (F5) – 開始或繼續除錯 • Insert/Remove Breakpoint (F9) – 新增/移除中斷點

  32. 除錯工具列 • Watch – 顯示或隱藏監看視窗 • Variables – 顯示或隱藏變數視窗 • Registers - 顯示或隱藏暫存器視窗 • Memory - 顯示或隱藏記憶體視窗 • Call Stack - 顯示或隱藏呼叫堆疊視窗 • Disassembly - 顯示或隱藏反組譯視窗

  33. 編譯訊息- Success

  34. 編譯訊息- Fail

More Related