博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Symbol Overloading in C
阅读量:2031 次
发布时间:2019-04-28

本文共 1016 字,大约阅读时间需要 3 分钟。

Symbol Overloading in C
Symbol Meaning
static Inside a function, retains its value between calls
At the function level, visible only in this file
extern Applied to a function definition, has global scope (and is redundant)
Applied to a variable, defined elsewhere
void As the return type of a function, doesn't return a value
In a pointer declaration, the type of a generic pointer
In a parameter list, takes no parameters
* The multiplication operator
Applied to a pointer, indirection
In a declaration, a pointer
& Bitwise AND operator
Address-of operator
= Assignment operator
== Comparison operator
<= Less-than-or-equal-to operator
<<= Compound shift-left assignment operator
< Less-than operator
< Left delimiter in #include directive
() Enclose formal parameters in a function definition
Make a function call
Provide expression precedence
Convert (cast) a value to a different type
Define a macro with arguments
Make a macro call with arguments
Enclose the operand of the sizeof operator when it is a typename

 

转载地址:http://xbtaf.baihongyu.com/

你可能感兴趣的文章
CIO应该考虑的九个外包神话和现实
查看>>
微软技术节(TechFest 2010)最前沿技术汇总
查看>>
新技术,源于新动力
查看>>
用Java线程获取优异性能(II)——使用同步连载线程访问关键代码部份
查看>>
java 起步
查看>>
asp.net生成静态页
查看>>
学习java必看
查看>>
高质量软件开发人员的五大习惯
查看>>
Web2.0 编程思想:16条法则
查看>>
LoadRunner用户行为模拟器 《第三篇》
查看>>
SQL Server索引 - 聚集索引、非聚集索引、非聚集唯一索引 <第八篇>
查看>>
CodeSmith 基本语法(二)
查看>>
C# 特性(attribute)
查看>>
逻辑数据库设计 - 无视约束(谈外键)
查看>>
SQL 操作结果集 -并集、差集、交集、结果集排序
查看>>
SQL Server 存储过程
查看>>
SqlDataReader类
查看>>
详解索引连接类型
查看>>
windbg配置问题汇总
查看>>
托管堆与垃圾收集
查看>>