b.hpp
来自「一个实现C++反射机制的类库」· HPP 代码 · 共 30 行
HPP
30 行
#ifndef B_H#define B_H#include "A.hpp"#include "C.hpp"class B : public A { public: B(); // This is inline to workaround some IRIX bugs. virtual ~B() { delete [] array; } int f1; float *array; int array_size; double array2[10]; C c;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?