c++进阶5:动态库与静态库--类篇


0.前提(文件内容)

  • Point3D.h
#ifndef __POINT3D_H
#define __POINT3D_H


// 定义一个抽象类
// 提供纯虚函数接口
class IPoint3D{
   
public:
    virtual void Print() const = 0;
    virtual ~IPoint3D(){
   }
};

// 具体实现类要继承抽象类
class Point3D:public IPoint3D{
   
public:
    int x,y,z;
    Point3D(int x,int y,int z);
    void Print()const;
};

// 提供抽象类对象的创建和销毁的接口
extern "C"{
    // 因为只支持C++,所以没有使用__cplusplus条件编译
    IPoint3D* CreatePoint3D(int x,int y,int z);
    void DestroyPoint3D(IPoint3D* p);
    
    typedef IPoint3D* (*create_t)(int,int,int);
    typedef void (*destroy_t)(IPoint3D*);
}

#endif // __POINT3D_H

  • Point3D.cpp
  #include "Point3D.h"
#include <iostream>
using namespace std;

Point3D::Point3D(int x,int y,int z):x(x),y(y),z(z){
   }
void Point3D::Print()const{
   
    cout << "(" << x << "," << y<<"," << z<< ")" << endl; 
}

IPoint3D* CreatePoint3D(int x,int y,int z){
   
    return new Point3D(x,y,z);
}
void DestroyPoint3D(IPoint3D* p){
   
    delete p;
}

  • Point3D_test.cpp
#include <iostream>
#
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值