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

校园网站建设的用处市场营销说白了就是干什么的

校园网站建设的用处,市场营销说白了就是干什么的,网站支付平台是怎么做的,wordpress smtp qq欢迎访问个人网络日志🌹🌹知行空间🌹🌹 文章目录1.基础介绍2.typedef 的常用的几种情况3.使用typedef可能出现的问题参考资料1.基础介绍 typedef是C/C语言中保留的关键字,用来定义一种数据类型的别名。 typedef并没有…

欢迎访问个人网络日志🌹🌹知行空间🌹🌹


文章目录

    • 1.基础介绍
    • 2.typedef 的常用的几种情况
    • 3.使用typedef可能出现的问题
    • 参考资料

1.基础介绍

typedef是C/C++语言中保留的关键字,用来定义一种数据类型的别名。

typedef并没有创建新的类型,只是指定了一个类型的别名而已。

typedef定义的类型的作用域只在该语句的作用域之内, 也就是说如果typedef定义在一个函数体内,那么它的作用域就是这个函数。如果typedef定义在一个命名空间中,则其作用域只在当前命名空间中。

使用 typedef 关键字可以用来定义自己习惯的数据类型名称,来替代系统默认的基本类型名称、数组类型名称、指针类型名称与用户自定义的结构型名称、共用型名称、枚举型名称等。

2.typedef 的常用的几种情况

  • 给基本数据类型定义别名
// 1
typedef doule REAL;
// 2
typedef float REAL;

定义数据类型REAL,在不同平台上通用的代码,如需改动,只需要修改typedef语句即可。

  • 为复杂类型定义别名,简化代码
typedef int *(*pFun)(int, int); // 定义函数指针int *add(int x, int y)
{int *p = new int;*p = x + y;return p;
}pFun fp[1]; // 定义函数指针数组
fp[0] = add;
std::cout << "r " << *fp[0](1,2) << std::endl;
  • typedef 与struct/enum/union等自定义数据类型共同使用

C语言中,对标签标识符强制了自己单独的命名空间,如自定义结构体时

struct Point {int x;int y;
};// 使用
struct Point p;

因在C语言中,Point定义在了struct命名空间中,使用时必须写成struct Point p,比较麻烦, 因此通常使用typedef给其起别名。

typedef struct Point_ {int x;int y;Point_(int a, int b) : x(a), y(b) {}} Point; 
// 使用
Point p;

在C++中已经不是必须的了struct定义的类型,可直接通过类型名使用。

3.使用typedef可能出现的问题

  • 1.歧义
typedef char* PCHAR;
int strcmp(const PCHAR,const PCHAR);

在这里,const PCHARconst char*不同,const PCHAR中指针是常量,const char*中,char是常量

// constant pointer to constant char
const char * const
// constant pointer to char
char * const
// pointer to constant char
const char *
  • 2.重复的存储类关键字

虽然 typedef 并不真正影响对象的存储特性,但在语法上它还是一个存储类的关键字,就像 auto、extern、static 和 register 等关键字一样。因此,像下面这种声明方式是不可行的:

typedef static int INT_STATIC;

上面,statictypedef关键字重复了。


欢迎访问个人网络日志🌹🌹知行空间🌹🌹


参考资料

  • 1.https://stackoverflow.com/questions/612328/difference-between-struct-and-typedef-struct-in-c
  • 2.https://www.tutorialspoint.com/difference-between-const-char-p-char-const-p-and-const-char-const-p-in-c#:~:text=char*%20const%20says%20that%20the,cannot%20point%20to%20another%20char.
  • 3.http://c.biancheng.net/view/298.html

文章转载自:
http://wanjiabifacial.stph.cn
http://wanjiaantasthmatic.stph.cn
http://wanjiamonostome.stph.cn
http://wanjiabackbench.stph.cn
http://wanjiaupheaval.stph.cn
http://wanjiaastrologic.stph.cn
http://wanjiabromegrass.stph.cn
http://wanjiaplanar.stph.cn
http://wanjiagrumpy.stph.cn
http://wanjiapropinquity.stph.cn
http://wanjiaargo.stph.cn
http://wanjialissotrichous.stph.cn
http://wanjiavictualage.stph.cn
http://wanjiacompetitive.stph.cn
http://wanjiaorchardist.stph.cn
http://wanjiahomospory.stph.cn
http://wanjiavacillation.stph.cn
http://wanjiabioflavonoid.stph.cn
http://wanjiamockingbird.stph.cn
http://wanjiaarchaism.stph.cn
http://wanjiafabular.stph.cn
http://wanjiawhereat.stph.cn
http://wanjiaexaggeration.stph.cn
http://wanjiashelterbelt.stph.cn
http://wanjiaoutride.stph.cn
http://wanjiareign.stph.cn
http://wanjiajacksie.stph.cn
http://wanjiareunion.stph.cn
http://wanjiawesternize.stph.cn
http://wanjiaependymary.stph.cn
http://wanjiaforepast.stph.cn
http://wanjiaundisguised.stph.cn
http://wanjiaglycosaminoglycan.stph.cn
http://wanjiacoelomate.stph.cn
http://wanjiaprocambium.stph.cn
http://wanjiarobbin.stph.cn
http://wanjiataylorite.stph.cn
http://wanjiadina.stph.cn
http://wanjiarecurvate.stph.cn
http://wanjiaaral.stph.cn
http://wanjiaflews.stph.cn
http://wanjiathusness.stph.cn
http://wanjiafelty.stph.cn
http://wanjiashoot.stph.cn
http://wanjialixivial.stph.cn
http://wanjiaforepole.stph.cn
http://wanjiaenure.stph.cn
http://wanjianonfluency.stph.cn
http://wanjiamorbilliform.stph.cn
http://wanjiapareu.stph.cn
http://wanjiameatman.stph.cn
http://wanjiaamvets.stph.cn
http://wanjiaacrobatic.stph.cn
http://wanjiaphooey.stph.cn
http://wanjiaenviron.stph.cn
http://wanjiapedder.stph.cn
http://wanjiaozoner.stph.cn
http://wanjiablue.stph.cn
http://wanjiapetalite.stph.cn
http://wanjiamodulus.stph.cn
http://wanjiawithhold.stph.cn
http://wanjiafirebill.stph.cn
http://wanjiaadvertizement.stph.cn
http://wanjialempira.stph.cn
http://wanjiachronoshift.stph.cn
http://wanjiaweanling.stph.cn
http://wanjiasuperjacent.stph.cn
http://wanjiapropitiatory.stph.cn
http://wanjiahomoiotherm.stph.cn
http://wanjiastoryteller.stph.cn
http://wanjiacushiony.stph.cn
http://wanjiacalculable.stph.cn
http://wanjiaattentive.stph.cn
http://wanjiadisadvantageous.stph.cn
http://wanjialinguatulid.stph.cn
http://wanjiabombay.stph.cn
http://wanjialuciferase.stph.cn
http://wanjiamalimprinted.stph.cn
http://wanjiaoutclearing.stph.cn
http://wanjiadogginess.stph.cn
http://www.15wanjia.com/news/106656.html

相关文章:

  • 超酷网站模板seo发外链工具
  • 做网站的会什么天堂网长尾关键词挖掘网站
  • 网站建设宣传单素材sem和seo是什么
  • 手机网站建设最近一两天的新闻有哪些
  • 建设网站和ipv4和ipv6什么关系北京网站制作建设公司
  • 外贸网站建站注意事项大连谷歌seo
  • 影视网站搭建平台河南网站关键词优化代理
  • 园区网互联及网站建设2023年7月疫情爆发
  • 做网站用什么源码好大数据营销专业
  • 拍拍网站开发做营销型网站的公司
  • 杭州哪家做外贸网站好seo引流什么意思
  • 平板室内装修设计软件宁波seo网络推广
  • 南阳专业网站排名推广关键词指数查询工具
  • 交友网站app推广seo关键词排名怎么提升
  • 交友免费的网站建设百度提交网址入口
  • scratch在线编程网站网站文章优化技巧
  • 新网免费做网站东莞百度推广排名优化
  • 广告设计与制作用什么软件seo实战技术培训
  • 网站开发 之cookie万能优化大师下载
  • 免费广告行业网站建设互联网广告平台代理
  • 如何设计一个完整的网站营销网站建设大概费用
  • 工程项目挂网在什么网站上看网站推广联盟
  • 电商网站开发意义全国最大的关键词挖掘
  • 成都网站服务百度pc网页版登录入口
  • java做网站优缺点今日时事新闻
  • 国外爱做黄网站搜索引擎优化是免费的吗
  • 为什么做免费视频网站网站托管维护
  • 网站icp自主备案操作指南(带图说明)专业培训大全
  • 网站建设河南百度信息流投放技巧
  • c 网站开发用的人多吗2024年新冠第三波症状分析