Class 的基本使用

Stephen_X_x發表於2019-05-09

類類似於宣告結構體
物件類似於宣告變數

#include<cstdio>
#include<cstdlib>
#include<iostream>
using namespace std;
///////////////////////////// 
class TIME
{
    public:
        int h,m,s;
        void showtime(TIME &t)
        {
            cout<<t.h<<":"<<t.m<<":"<<t.s<<endl;
        }
};
/////////////////////////////
void settime(TIME &t,int h,int m,int s)
{
    t.h=h,t.m=m,t.s=s;
}

/////////////////////////////
int main()
{
    TIME t1;
    settime(t1,12,34,32);
    t1.showtime(t1);
}

關於關鍵字template(模板)
https://blog.csdn.net/biu__biu_biu/article...

本作品採用《CC 協議》,轉載必須註明作者和本文連結