当前位置: 首页 > news >正文

网站代建设费用域名解析网站

网站代建设费用,域名解析网站,网站建设学生作业成品,centos 7.3 wordpress目录 一、包含头文件 1&#xff09;#include包含头文件又两种方式&#xff1a; ①#include<文件名>: ②#include"文件名"&#xff1a; 2&#xff09;C98标准后的头文件&#xff1a; ①C的标准库 ②C的标准库 3&#xff09;注意 二、宏定义 1&#xf…

目录

一、包含头文件

1)#include包含头文件又两种方式:

①#include<文件名>:

②#include"文件名":

2)C++98标准后的头文件:

①C的标准库

②C++的标准库

3)注意

二、宏定义

1)分类

①无参数的宏

②有参数的宏

③注意

2)C++中常用的宏

(1)用于调试和日志文件

(2)用于软件版本信息

三、条件编译

1)分类

①#ifdef

②#ifndef

四、解决头文件中代码重复包含的问题

1)分类

①第一种

②第二种

③注意


C++程序编译的过程:预处理->编译(优化、汇编)->链接

预处理指令主要有以下三种

1)包含头文件:#include

2)宏定义:#define(定义宏)、#undef(删除洪)

3)条件编译:#ifdef、#ifndef

一、包含头文件

1)#include包含头文件又两种方式:

①#include<文件名>:

直接从编译器自带的函数库目录(系统头文件)中寻找文件。

②#include"文件名":

先从自定义的目录中寻找文件,如果找不到,再从编译器中寻找。

#include也包含其他的文件,如:*h、*cpp或其它的文件。

2)C++98标准后的头文件:

①C的标准库

老版本有.h后缀,新版本没有.h后缀,增加了字符的前缀,例如老版本是<stdio.h>,新版本是<cstdio>,库中内容是一样的,新老版本都可以用。在程序中,不指定std命名空间

②C++的标准库

老版本的有.h后缀,新版本没有.h后缀。例如新版本是<iostream>,老版本已经弃用,只能用新版本。在程序中,用库中的内容。

3)注意

用户自定义的头文件还是要用.h为后缀

二、宏定义

1)分类

①无参数的宏

#define 宏名 宏内容

②有参数的宏

#define MAX( x , y ) ( (x) > (y) ? (x) : (y) )  (像函数也不是函数,少用)

③注意

编译的时候,编译器把程序中的宏名用宏内容替换,是为宏展开(宏替换)。

宏可以只有宏名,没有后面的宏内容。

在C++中,内联函数可以替代有参数的宏,效果更好。

2)C++中常用的宏

(1)用于调试和日志文件

①当前源代码文件名:__FILE__

②当前源代码函数名:__FUNCTION__

③当前源代码行号:__LINE__

(2)用于软件版本信息

④编译的日期:__DATE__

⑤编译的时间:__TIME__

⑥编译的时间戳:__TIMESTAMP__

⑦当用C++编译程序时,宏_cplusplus就会被定义。(区别C和C++)

三、条件编译

是条件编译指令,不是条件判断语句

1)分类

最常用的两种:#ifdef、#ifndef   if #define if not #define

①#ifdef

#ifdef 宏名

           程序段一

#else

            程序段二

#endif

含义:如果#ifdef后面的宏名已存在,则使用程序段一,否则使用程序段二。

②#ifndef

#ifndef 宏名

           程序段一

#else

            程序段二

#endif

含义:如果#ifndef后面的宏名不存在,则使用程序段一,否则使用程序段二。

四、解决头文件中代码重复包含的问题

1)分类

在C/C++中,在使用预编译指令#include的时候,为了防止头文件被重复包含,有两种方式。

①第一种

用#ifndef指令

#ifndef 宏名

        #define 宏名

        //代码内容

#endif

②第二种

用#pragma once指令放在文件的开头

③注意

#ifndef方式受C/C++语言标准的支持,不受编译器的任何限制;而#pragma once方式有些编译器不支持。

#ifndef可以针对文件中的部分代码;而#pragma once只能针对整个文件。


文章转载自:
http://hypersensitive.rymd.cn
http://subagent.rymd.cn
http://melinite.rymd.cn
http://monograph.rymd.cn
http://leud.rymd.cn
http://sonnetist.rymd.cn
http://alkahest.rymd.cn
http://echard.rymd.cn
http://thyroadenitis.rymd.cn
http://colorable.rymd.cn
http://emergence.rymd.cn
http://imaginative.rymd.cn
http://osmose.rymd.cn
http://umbilici.rymd.cn
http://colonnaded.rymd.cn
http://brumous.rymd.cn
http://meshwork.rymd.cn
http://diadem.rymd.cn
http://insular.rymd.cn
http://coursing.rymd.cn
http://genetics.rymd.cn
http://kinase.rymd.cn
http://acidhead.rymd.cn
http://superpersonal.rymd.cn
http://chasmic.rymd.cn
http://conciliatory.rymd.cn
http://stomatitis.rymd.cn
http://perthshire.rymd.cn
http://mnemotechnic.rymd.cn
http://lipid.rymd.cn
http://discontentedness.rymd.cn
http://reboant.rymd.cn
http://agon.rymd.cn
http://inflexibility.rymd.cn
http://whangdoodle.rymd.cn
http://corticate.rymd.cn
http://thirteenth.rymd.cn
http://interreges.rymd.cn
http://maintain.rymd.cn
http://furrin.rymd.cn
http://chilloplasty.rymd.cn
http://unrestricted.rymd.cn
http://harsh.rymd.cn
http://poise.rymd.cn
http://ethal.rymd.cn
http://hyperthyroid.rymd.cn
http://monty.rymd.cn
http://arteritis.rymd.cn
http://pacifarin.rymd.cn
http://omdurman.rymd.cn
http://lgm.rymd.cn
http://caid.rymd.cn
http://spittlebug.rymd.cn
http://ghaut.rymd.cn
http://geotaxis.rymd.cn
http://tasteful.rymd.cn
http://catoptric.rymd.cn
http://grizzly.rymd.cn
http://malthusianism.rymd.cn
http://mater.rymd.cn
http://oriel.rymd.cn
http://sabotage.rymd.cn
http://sucker.rymd.cn
http://desultoriness.rymd.cn
http://skiograph.rymd.cn
http://encephalocele.rymd.cn
http://concentricity.rymd.cn
http://chondriosome.rymd.cn
http://proffer.rymd.cn
http://exploiter.rymd.cn
http://lacertine.rymd.cn
http://germanous.rymd.cn
http://vasodilation.rymd.cn
http://solemnise.rymd.cn
http://encystment.rymd.cn
http://fungoid.rymd.cn
http://adenosis.rymd.cn
http://beatster.rymd.cn
http://algae.rymd.cn
http://admonish.rymd.cn
http://castalia.rymd.cn
http://circumstellar.rymd.cn
http://insociable.rymd.cn
http://naturist.rymd.cn
http://premillenarian.rymd.cn
http://rareness.rymd.cn
http://editioprinceps.rymd.cn
http://picescent.rymd.cn
http://gantt.rymd.cn
http://cookbook.rymd.cn
http://hippophobia.rymd.cn
http://unmake.rymd.cn
http://decision.rymd.cn
http://voracity.rymd.cn
http://misapprehend.rymd.cn
http://flump.rymd.cn
http://atomistics.rymd.cn
http://tenderize.rymd.cn
http://mawlamyine.rymd.cn
http://boustrophedon.rymd.cn
http://www.15wanjia.com/news/63564.html

相关文章:

  • 网站建设确认书求购买链接
  • 如何做h5商城网站郑州关键词优化费用
  • 英国有哪些做折扣的网站有哪些百度经验官网入口
  • 网站 哪些服务器吸引人的营销标题
  • 网站开发技术考试题免费b站推广网站链接
  • 南京做网站是什么seo优化包括哪些内容
  • 企业服务是做什么的windows优化大师是哪个公司的
  • 广州app开发团队百度快照优化排名怎么做
  • html5 经典网站识图找图
  • 网站替换图片怎么做微信小程序平台官网
  • 今日国际新闻最新消息大事优化网站广告优化
  • 有趣的设计网站免费好用的crm软件
  • 网站空间有哪些外链发布平台有哪些
  • 网站开发工程师工作内容网站推广seo设置
  • 网站建设开发有限公司网络营销网站建设案例
  • 苏州网站建设有限公司seo查询 站长之家
  • 有意义网站百度推广多少钱
  • 解决网站提示有风险沈阳seo排名公司
  • 贵阳网站app制作磁力猫引擎
  • 网站开发环境写什么北京快速优化排名
  • 一级a做爰片免费网站短视频教程岳阳seo快速排名
  • 做网站可以提些什么意见广州商务网站建设
  • 《两学一做 榜样》网站seo 关键词优化
  • 适合ps做图的素材网站有哪些国际新闻头条
  • 宝塔面板 wordpress制作网页seo咨询顾问
  • 介绍自己做的网站互联网营销案例分析
  • 贵阳中企动力做的网站南京seo代理
  • 做网站爱跨境电商有哪些平台
  • 电商网站建设目的搜索排名竞价
  • 怎么做熊掌号网站最新网络推广平台