目录一、枚举类型的使用方法二、sizeof 关键字的用法三、typedef 的意义四、小结一、枚举类型的使用方法 enum 是 C 语言中的一种自定义类型enum 值是可以根据需要自
下面看一段 enum 的使用代码吧:
#include<stdio.h>
enum
{
ARRAY_SIZE = 10
};
enum Color
{
RED = 0x00FF0000,
GREEN = 0x0000FF00,
BLUE = 0x000000FF
};
void PrintColor(enum Color c)
{
switch (c)
{
case RED:
printf("Color: RED (0x%08x)\n", c);
break;
case GREEN:
printf("color: GREEN (0x%08X)\n", c);
break;
case BLUE:
printf("Color: BLUE (0x%08X)\n", c);
break;
}
}
void InitArray(int array[])
{
int i = 0;
for (i = 0; i < ARRAY_SIZE; i++)
{
array[i] = i + 1;
}
}
void PrintArray(int array[])
{
int i = 0;
for (i = 0; i < ARRAY_SIZE; i++)
{
printf("%d\n", array[i]);
}
}
int main()
{
enum Color c = GREEN;
int array[ARRAY_SIZE] = {0};
PrintColor(c);
InitArray(array);
PrintArray(array);
return 0;
}
下面为输出结果:
这段程序说明enum 中定义的值是C语言中真正意义上的常量。
sizeof 可以采用以下的用法:
sizeof 是 C 语言的内置关键字而不是函数
下面看一段 sizeof 的本质的代码:
#include<stdio.h>
int f()
{
printf("Autumn Ze");
return 0;
}
int main()
{
int var = 0;
int size = sizeof(var++);
printf("var = %d, size = %d\n", var, size);
size = sizeof(f());
printf("size = %d\n", size);
return 0;
}
下面为输出结果:
为什么 var 不等于 1 呢?这是因为在编译过程中所有的 sizeof 将被具体的数值所替换,var++ 这条语句根本得不到执行。同样,f() 函数也不会得到执行,所以不会输出 Autumn Ze,只会输出返回值类型 int 的字节数。
typedef 用于给一个已经存在的数据类型重命名
typedef 本质上不能产生新的类型
typedef 重命名的类型:
用法:typedef type new_name;
下面看一段 typedef 使用的代码:
#include<stdio.h>
typedef int Int32;
struct _tag_point
{
int x;
int y;
};
typedef struct _tag_point Point;
typedef struct
{
int length;
int array[];
}SoftArray;
typedef struct _tag_list_node ListNode;
struct _tag_list_node
{
ListNode* next;
};
int main()
{
Int32 i = -100;
//unsigned Int32 ii = 0;
Point p;
SoftArray* sa = NULL;
ListNode* node = NULL;
return 0;
}
这段代码主要就是说明typedef 重命名的类型可以在 typedef 语句之后定义,不能被 unsigned 和 signed 修饰。
到此这篇关于C语言详细分析讲解关键字enum与sizeof及typedef的用法的文章就介绍到这了,更多相关C语言 enum sizeof typedef内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: C语言详细分析讲解关键字enum与sizeof及typedef的用法
本文链接: https://lsjlt.com/news/146573.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0