C語言 namespace 建立類別與標頭檔

2022/11/14 C++

namespace

#include <iostream>
using namespace std;
namespace demo{
    class Demo {
    public:
        int a;
        int b;
        
        int do_something() {
            return a + b;
        }
    };
}

int main() {
    demo::Demo d;
    d.a = 55;
    d.b = 66;
    cout << d.do_something() << std::endl;
    
    return 0;
}

標頭檔設定

  • test.h
#include <iostream>

using namespace std;

void call(){
    cout << "my test!" << endl;
}
  • main.c
#include <iostream>
#include "test.h"

using namespace std;

int main()
{
    cout << "Hello world!" << endl;
    call();
    return 0;
}

Reference

鼓勵持續創作,支持化讚為賞!透過下方的 Like 拍手👏,讓創作者獲得額外收入~
版主10在2020年首次開設YouTube頻道,嘗試拍攝程式教學。想要了解更多的朋友歡迎關注我的頻道,您的訂閱就是最大的支持~如果想學其他什麼內容也歡迎許願XD
https://www.youtube.com/channel/UCSNPCGvMYEV-yIXAVt3FA5A

Search

    Table of Contents