C++類的包含編譯模型

C++類的包含編譯模型

1、C++普通類的包含編譯模型
一、類定義頭文件student.h
class Student {
public:
    void print();
};

#include "student.cpp"
二、類實現文件student.cpp
void Student::print()
{
    cout << "a student information...." << endl;
}
三、主程序main.cpp
#include <iostream>
using namespace std;
#include "student.h"

int main()
{
    Student student;
    student.print();
    
    return 0;
}
運行主程序,結果以下:

2、C++模板類的包含編譯模型
一、模板類定義頭文件base.h
template<class T> 
class Base  
{  
public:  
  Base() {};  
  ~Base() {};  
  T add(T x, T y);  
};

#include "base.cpp"
二、模板類實現文件base.cpp
template<class T> 
T Base<T>::add(T x, T y)  
{  
    return x + y;  
}
三、主程序main_base.cpp
#include <iostream>
using namespace std;
#include "string"
#include "base.h"

int main()
{
    Base<int> base1;  
    cout << "2 + 3 = " << base1.add(2, 3) << endl;  
    
    Base<double> base2;
    cout << "1.3 + 3.4 = " << base2.add(1.3, 3.4) << endl;
    
    Base<string> base3;
    cout << "inter + national = " << base3.add("inter", "national") << endl; 
    
    return 0;
}
運行主程序,結果以下:


本文分享 CSDN - howard2005。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。ios

相關文章
相關標籤/搜索