⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.cpp

📁 C++ Source code from a tutorial
💻 CPP
字号:
#include <iostream>
#include <stdlib.h>

using namespace std;

/*
// Old way
template <typename T>
class ImFree {
protected:
    T x;
public:
    T& getx() {
        return x;
    }
    void setx(T newx) {
        x = newx;
    }
};
*/


// New way
template <typename T>
class ImFree {
protected:
    T x;
public:
    T& getx();
    void setx(T);
};

template <typename T>
T &ImFree<T>::getx() {
    return x;
}

template <typename T>
void ImFree<T>::setx(T newx) {
    x = newx;
}

int main(int argc, char *argv[])
{
    ImFree<int> separate;
    separate.setx(10);
    cout << separate.getx() << endl;
    system("PAUSE");	
    return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -