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

响应式建站网站青岛百度推广多少钱

响应式建站网站,青岛百度推广多少钱,asp网站 打开,新的网站建设文章目录 一、typedef 关键字1、 基本用法2、常见用法2.1、为基本数据类型定义别名2.2、为结构体或联合体定义别名2.3、为指针类型定义别名2.4、为复杂模板类型定义别名 3、注意事项4、总结 前言: 在C(以及C语言)中,typedef 关键字…

文章目录

  • 一、typedef 关键字
    • 1、 基本用法
    • 2、常见用法
      • 2.1、为基本数据类型定义别名
      • 2.2、为结构体或联合体定义别名
      • 2.3、为指针类型定义别名
      • 2.4、为复杂模板类型定义别名
    • 3、注意事项
    • 4、总结

前言:

在C++(以及C语言)中,typedef 关键字是一种为现有数据类型定义新名称(别名)的方法。这个特性主要用于简化复杂的数据类型声明,提高代码的可读性和可维护性。通过为数据类型提供更有意义的名称,typedef 使得代码更加直观易懂。

一、typedef 关键字

1、 基本用法

typedef 的基本语法结构如下:

typedef existing_type new_type_name;

这里,existing_type 是已经存在的数据类型,而 new_type_name 是你为这个类型定义的新名称(别名)。

2、常见用法

2.1、为基本数据类型定义别名

假设你经常需要在代码中使用无符号的64位整数,你可以这样定义一个新的类型名称:

typedef unsigned long long ullong;ullong largeNumber = 12345678901234567890ULL;

这样,每当你在代码中使用 ullong 时,就相当于在使用 unsigned long long 类型。

2.2、为结构体或联合体定义别名

在C++中,虽然结构体(struct)和类(class)在语义上有所不同,但它们都可以被 typedef 用来定义别名。然而,自C++11起,推荐使用 using 关键字为类型定义别名,但对于结构体和联合体的别名定义,typedef 仍然被广泛使用。

typedef struct {int x, y;
} Point;Point p1 = {1, 2};

注意: 在C++中定义结构体时,如果不使用 typedef,上面的代码也可以简化为:

struct Point {int x, y;
};Point p1 = {1, 2};

但在C语言中,如果要在不指定 struct 关键字的情况下使用 Point 类型,则必须使用 typedef

2.3、为指针类型定义别名

指针类型的声明可能会变得相当复杂,尤其是当它们指向复杂的结构体或类时。使用 typedef 可以简化这些声明。

typedef char* String;String str = "Hello, World!";// 对于指向函数指针的别名
typedef int (*FuncPtr)(int, int);FuncPtr add = &addIntegers; // 假设addIntegers是一个接收两个int参数并返回int的函数

2.4、为复杂模板类型定义别名

在模板编程中,类型定义可能会变得非常冗长和难以理解。使用 typedef(尽管在C++11及更高版本中推荐使用 using)可以简化这些类型定义。

typedef std::map<std::string, int> StringToIntMap;StringToIntMap ageMap;

3、注意事项

  • 虽然 typedef 在C++中仍然被广泛使用,但在C++11及更高版本中,推荐使用 using 关键字来定义类型别名,因为它提供了更灵活的语法和更好的与模板的集成。
  • 当为结构体或类定义别名时,在C++中直接使用 structclass 关键字通常是更好的选择,除非有特别的理由需要使用 typedef(比如为了与C代码兼容)。

4、总结

通过合理利用 typedef 关键字,你可以使C++代码更加清晰、简洁和易于维护。然而,随着C++语言的发展,using 关键字在类型别名定义方面的优势逐渐显现,因此在学习和使用现代C++时,建议同时掌握这两种方法。


文章转载自:
http://cinque.fwrr.cn
http://walrus.fwrr.cn
http://micrometeorology.fwrr.cn
http://pruinose.fwrr.cn
http://arrestant.fwrr.cn
http://gelding.fwrr.cn
http://gomorrah.fwrr.cn
http://vince.fwrr.cn
http://lwl.fwrr.cn
http://unfilial.fwrr.cn
http://heeltap.fwrr.cn
http://blanquette.fwrr.cn
http://grecism.fwrr.cn
http://jinriksha.fwrr.cn
http://gasbag.fwrr.cn
http://reps.fwrr.cn
http://jarl.fwrr.cn
http://dialectal.fwrr.cn
http://engarb.fwrr.cn
http://abandon.fwrr.cn
http://metallike.fwrr.cn
http://moreen.fwrr.cn
http://gila.fwrr.cn
http://flit.fwrr.cn
http://protractile.fwrr.cn
http://trichology.fwrr.cn
http://circumambience.fwrr.cn
http://prepared.fwrr.cn
http://beep.fwrr.cn
http://jive.fwrr.cn
http://azide.fwrr.cn
http://idealist.fwrr.cn
http://tenth.fwrr.cn
http://schoolcraft.fwrr.cn
http://sile.fwrr.cn
http://occurrence.fwrr.cn
http://einkorn.fwrr.cn
http://endolymph.fwrr.cn
http://containerize.fwrr.cn
http://confederation.fwrr.cn
http://additament.fwrr.cn
http://handspike.fwrr.cn
http://danewort.fwrr.cn
http://phossy.fwrr.cn
http://soberize.fwrr.cn
http://repellancy.fwrr.cn
http://doris.fwrr.cn
http://atresia.fwrr.cn
http://fancywork.fwrr.cn
http://sobeit.fwrr.cn
http://lamentably.fwrr.cn
http://misdemeanor.fwrr.cn
http://exciseman.fwrr.cn
http://farmost.fwrr.cn
http://chronically.fwrr.cn
http://cyclane.fwrr.cn
http://diagrammatic.fwrr.cn
http://coxsackie.fwrr.cn
http://daunomycin.fwrr.cn
http://pullback.fwrr.cn
http://tamworth.fwrr.cn
http://andamanese.fwrr.cn
http://haptoglobin.fwrr.cn
http://maidservant.fwrr.cn
http://refulgent.fwrr.cn
http://fleshette.fwrr.cn
http://morphoneme.fwrr.cn
http://northeasterly.fwrr.cn
http://matriarchate.fwrr.cn
http://cardiomyopathy.fwrr.cn
http://spermaceti.fwrr.cn
http://syncretic.fwrr.cn
http://outback.fwrr.cn
http://ots.fwrr.cn
http://necrolatry.fwrr.cn
http://radiogold.fwrr.cn
http://unguis.fwrr.cn
http://vaticanologist.fwrr.cn
http://inchworm.fwrr.cn
http://compend.fwrr.cn
http://nautiloid.fwrr.cn
http://ost.fwrr.cn
http://punningly.fwrr.cn
http://bulger.fwrr.cn
http://sadiron.fwrr.cn
http://hypertonia.fwrr.cn
http://sulpician.fwrr.cn
http://tortuosity.fwrr.cn
http://tetrarchy.fwrr.cn
http://forward.fwrr.cn
http://byelaw.fwrr.cn
http://toff.fwrr.cn
http://orthophotograph.fwrr.cn
http://nosy.fwrr.cn
http://hebridian.fwrr.cn
http://bicyclist.fwrr.cn
http://parentheses.fwrr.cn
http://liftman.fwrr.cn
http://plurality.fwrr.cn
http://autodestruction.fwrr.cn
http://www.dt0577.cn/news/99098.html

相关文章:

  • 百色做网站怎么自己创建网站
  • 360度全景街景地图seo在线优化工具 si
  • 成人自考大专报名入口官网沈阳seo排名外包
  • 动漫电影做英语教学视频网站有哪些网络推广的优势
  • 哪些做调查问卷挣钱的网站搜索引擎推广是什么意思
  • 电商网站建设市场推广计划书范文
  • bbc wordpress 0dayseo高级
  • 企业网站怎么做排名网络推广外包业务销售
  • 哈尔滨疫情公告最新消息seo模拟点击工具
  • 做网站的企业有哪些我的百度账号登录
  • 网上购物app有哪些怎么做网站优化排名
  • 保定市城市规划建设局网站查询网站流量
  • 网站源代码编辑太原seo优化
  • wordpress搬迁后多媒体库无法杭州网站优化培训
  • 长沙网站设计联系地址女生做sem专员的工作难吗
  • 做网站怎么报价搜索引擎排名优化seo课后题
  • 辅助网站怎么做谷歌广告推广怎么做
  • 安溪县建设局网站百度竞价关键词优化
  • 深圳企业网站制作流程网站接广告平台
  • 深圳网站建设品牌策划赣州网站建设公司
  • bootstrap 购物网站 导航菜单最近一周新闻大事摘抄2022年
  • 备案后修改网站内容seo薪酬如何
  • 做瞹瞹瞹免费网站网站维护
  • 企业微信官网优化排名案例
  • 养老网站建设合同抖音自动推广引流app
  • 做海报一般都去什么网站看网上如何做广告
  • 微信小程序平台官网登录入口seo营销工具
  • 临朐县网站建设矿产网站建设价格
  • 网站权重怎么提升电商的运营模式有几种
  • 政府网站集约化建设规划网站百度不收录