用于宏粘贴的C ++替代方案

时间:2017-12-14 19:40:01

标签: c++ macros

假设我有一系列课程:

C:\Program Files (x86)\Microsoft Visual Studio\Shared\Anaconda3_64\lib\site-packages\matplotlib\image.py in <module>()
     26 # For clarity, names from _image are given explicitly in this module:
     27 import matplotlib._image as _image
---> 28 import matplotlib._png as _png
     29 
     30 # For user convenience, the names from _image are also imported into

ImportError: DLL load failed: The specified procedure could not be found.

当我想启动类,而不是为每个类再次编写代码时,我可以使用宏:

class Port8Bit{
    void Write(uint8_t data);
    uint8_t Read();
};

class Port16Bit{
    void Write(uint16_t data);
    uint16_t Read();
};
//and so on for 32Bit and 64Bit

我对CPP很新,但我读过在大多数情况下使用宏并不是一个好习惯。我想知道,有更好的,更多的CPP方式吗?

2 个答案:

答案 0 :(得分:5)

那是什么模板:

template<class DataType>
class Port{
    void Write(DataType data);
    DataType Read();
};

using Port8Bit = Port<uint8_t>;
using Port16Bit = Port<uint16_t>;
// etc...

答案 1 :(得分:2)

这里的C ++答案是使用模板:

template<Data> class Port {
  void Write(Data data);
  Data Read();
};

然后,如果你想要一个8位版本:

Port<uint8_t> port8bit;