1 Star 0 Fork 0

BenLoogChang/LearnC

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.h 486 Bytes
一键复制 编辑 原始数据 按行查看 历史
z 提交于 2023-01-06 09:27 . C++中#ifndef、#define和#endif的区别
#pragma once
#ifndef _MAX_H
#define _MAX_H
int max(int num1, int num2);
#endif // !_MAX_H
/*
C语言编程学习笔记 —— #ifndef 的用法 ( 条件编译)
https://blog.csdn.net/weixin_41695564/article/details/80918197
C++中#ifndef、#define和#endif的区别
https://blog.csdn.net/weixin_46373574/article/details/108206689
#ifndef x
  //先测试x是否被宏定义过
  #define x
  //如果没有宏定义下面就宏定义x并编译下面的语句
  ...
  #endif
  //如果已经定义了则编译#endif后面的语句
*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/benloogchang/LearnC.git
git@gitee.com:benloogchang/LearnC.git
benloogchang
LearnC
LearnC
master

搜索帮助