memblock.h
来自「c语言是面向过程的程序语言」· C头文件 代码 · 共 42 行
H
42 行
#ifndef MEMBLOCK_H#define MEMBLOCK_H/* ****************************** * Object Oriented Programming in C * * Author: Laurent Deniau, Laurent.Deniau@cern.ch * * For more information, please see the paper: * http://home.cern.ch/ldeniau/html/oopc/oopc.html * ****************************** *//*------------------------------------*//* Specialized memBlock interface *//* [abstract class] *//*------------------------------------*//* integer memory block */#define gTypePrefix i#define gType1 int#include <g_memBlock.h>#undef gType1#undef gTypePrefix/* double memory block */#define gTypePrefix d#define gType1 double#include <g_memBlock.h>#undef gType1#undef gTypePrefix#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?