2016年11月7日 星期一

Visual Studio 使用方法 02

Visual Studio 使用方法 02



匯入現有檔案

接下來我們要將檔案切成三分
  • Test.hpp
  • Test.cpp
  • Test_main.cpp
請你使用記事本分別,另存下這三個檔案
注意要用另存,電腦預設是不能改副檔名的

Test_Main.cpp

/****************************************************************
Name : Test_Main.cpp
Date : 2016/11/07
By   : CharlotteHonG
Final: 2016/11/07
*****************************************************************/
#include <iostream>
#include "Test.hpp"
using namespace std;

int main(int argc, char const *argv[]){
    Test a(77);
    a.pri();
    return 0;
}

Test.hpp

/*****************************************************************
Name : Test.hpp
Date : 2016/11/07
By   : CharlotteHonG
Final: 2016/11/07
*****************************************************************/
#ifndef TEST_HPP
#define TEST_HPP

class Test{
public:
    Test(int n);
    void pri();
private:
    int num;
};

#endif

Test.cpp

/*****************************************************************
Name : Test.cpp
Date : 2016/11/07
By   : CharlotteHonG
Final: 2016/11/07
*****************************************************************/
#include <iostream>
#include "Test.hpp"
using namespace std;

Test::Test(int n){
    this->num=n;
}
void Test::pri(){
    cout << "num=" << this->num << endl;
}

把檔案放入專案內

加入

拖曳進去

F5 執行

沒有留言:

張貼留言