C/C++心得-结构体

先说句题外话,个人认为,基本上所有的高级语言被设计出来的最终目的是降低软件开发难度,提升软件开发人员素质和团队协作能力,降低软件维护的难度。在学习语言的时候,可以从这么方面来推测各种语言语法设计的原因,从来更好的掌握各种编程语言。

总结一下C语言中的数据类型结构:

1.常用基本数据类型(int, char, float, double, short, long等等)

2.数组

3.指针

4.枚举

5.结构体

6.公用体

...

这其中除了共用体不常用外,其他都是实际开发中经常用到的数据结构。其他的之前两篇都有说明,今天来说说枚举和结构体。

(初学者应该养成读代码从main开始读的习惯)

1.枚举

枚举作为一种数据类型,用于声明一组命名的常数,用来说明一种事物的不同类型或属性。实际应用作用的话,个人认为是提高代码的可读性,减小程序的维护难度。

举个例子,一个程序中需要使用变量表示颜色,那么写程序前我们需要先设定标准:0表示白色,1表示红色,2表示黄色,3表示蓝色...,那么程序代码如下:

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 void printColor(int color)
 5 {
 6     switch (color)
 7     {
 8     case 0:
 9         printf("白色\n");
10         break;
11     case 1:
12         printf("红色\n");
13         break;
14     case 2 :
15         printf("黄色\n");
16         break;
17     case 3:
18         printf("蓝色\n");
19         break;
20     default:
21         break;
22     }
23 }
24 
25 int main(int arg, char *args)
26 {
27     int color0 = 0; // 白色
28     int color1 = 1; // 红色
29     int color2 = 2; // 黄色
30     int color3 = 3; // 蓝色
31 
32     printColor(color0);
33     printColor(color1);
34     printColor(color2);
35     printColor(color3);
36     
37     getchar();
38     return 0;
39 }

(关于枚举的例子只是作为说明,这些作为例子有些不太好)如果程序代码量很大的情况下,0,1,2,3的这种数字意义很容易忘记,这时可以用到枚举

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 enum Color
 5 {
 6     White, // 白色
 7     Red, // 红色
 8     Yellow,// 黄色
 9     Blue // 蓝色
10 };
11 
12 void printColor(int color)
13 {
14     switch (color)
15     {
16     case White:
17         printf("白色\n");
18         break;
19     case Red:
20         printf("红色\n");
21         break;
22     case Yellow:
23         printf("黄色\n");
24         break;
25     case Blue:
26         printf("蓝色\n");
27         break;
28     default:
29         break;
30     }
31 }
32 int main(int arg, char *args)
33 {
34     int color0 = White; // 白色
35     int color1 = Red; // 红色
36     int color2 = Yellow; // 黄色
37     int color3 = Blue; // 蓝色
38 
39     printColor(color0);
40     printColor(color1);
41     printColor(color2);
42     printColor(color3);
43     
44     getchar();
45     return 0;
46 }

对枚举的理解应用暂时就如此,关于枚举的作为属性应用,以及其他方面的应用,有兴趣的可以查查其他资料。

2.结构体

结构体的意义之一同样是增加代码可读性。而且结构体配合指针使得C语言变得非常灵活。

结构体是由一系列具有相同或不同类型的数据组成。

 下面用两种方法定义并输出一个学生的信息。

首先是不用结构体和枚举的方法

 1 #define  _CRT_SECURE_NO_WARNINGS
 2 #include <stdio.h>
 3 #include <stdlib.h>
 4 #include <string.h>
 5 
 6 int getSex(short sex, char * sexVal)
 7 {
 8     if (sexVal == NULL)
 9     {
10         return -1;
11     }
12     switch (sex)
13     {
14     case 0:
15         strcpy(sexVal, "");
16         break;
17     case 1:
18         strcpy(sexVal, "");
19         break;
20     default:
21         return -2;
22         break;
23     }
24     return 0;
25 }
26 // 不用结构体和枚举的方法
27 int main(int arg, char * args[])
28 {
29     int num = 1;
30     char name[32] = "LiLei";
31     short sexN = 0;
32     char sex[4] = { '\0' };
33     if (getSex(sexN, sex) != 0)
34     {
35         return -1;
36     }
37     printf("学号:%d,姓名:%s,性别:%s\n", num, name, sex);
38 
39     getchar();
40     return 0;
41 }

下面使用结构体和枚举改造代码:

 1 #define  _CRT_SECURE_NO_WARNINGS
 2 #include <stdio.h>
 3 #include <stdlib.h>
 4 #include <string.h>
 5 
 6 typedef enum _Sex
 7 {
 8     Male,
 9     Female
10 }Sex;
11 
12 struct Student
13 {
14     int num;
15     char name[32];
16     short sex;
17 };
18 
19 int getSex(Sex sex, char * sexVal)
20 {
21     if (sexVal == NULL)
22     {
23         return -1;
24     }
25     switch (sex)
26     {
27     case Male:
28         strcpy(sexVal, "");
29         break;
30     case Female:
31         strcpy(sexVal, "");
32         break;
33     default:
34         return -2;
35         break;
36     }
37     return 0;
38 }
39 
40 int main(int arg, char * args[])
41 {
42     struct Student stu = { 1, "LiLei", Male };
43     char sex[4] = { 0 };
44     if (getSex(stu.sex, sex) != 0)
45     {
46         return -1;
47     }
48     printf("学号:%d,姓名:%s,性别:%s\n", stu.num, stu.name, sex);
49     getchar();
50     return 0;
51 }

 

可以发现,在没有什么注释的情况下,从Main开始读代码,第二段代码是比较好理解。

使用结构体一般都会使用typedef给结构体起个别名,当然typedef在指针、数组等方面都有应用,使用typedef可以精简代码。下面举个例子

 1 #define  _CRT_SECURE_NO_WARNINGS
 2 #include <stdio.h>
 3 #include <stdlib.h>
 4 #include <string.h>
 5 
 6 enum Sex
 7 {
 8     Male,
 9     Female
10 };
11 
12 typedef struct _Student
13 {
14     long num;
15     char name[32];
16     short sex;
17 } Student; // 使用typedef给结构体起别名
18 
19 int main(int arg, char * args[])
20 {
21     struct _Student stu1 = { 50, "hel", Male }; // 不使用typedef前的定义方式
22     Student stu2 = { 100, "yao", Male }; // 使用typedef的定义方式,主要是省去一个struct
23 
24     return 0;
25 }

typedef的用法,先正常定义,然后用别名替代掉原变量(或函数名)名称的位置,如:

 1 #define  _CRT_SECURE_NO_WARNINGS
 2 #include <stdio.h>
 3 #include <stdlib.h>
 4 #include <string.h>
 5 
 6 typedef int mI;
 7 typedef char mCh;
 8 typedef char mStr[32];// 原来定义char数组是 char * str[32]; 这里将str替换为别名
 9 typedef int (* name)(int a, int b); // int sum(int a, int b), 因为函数需要以指针形式表示,所以把sum替换为 * name
10 
11 int sum(int a, int b)
12 {
13     return a + b;
14 }
15 
16 int main(int arg, char *args[])
17 {
18     mI num = 10;
19     mCh ch = 'x';
20     mStr str = "hello"; // 这里相当于定义 char str[32] = "hello";
21     name func = sum; // 函数指针,相当于 int func(int a, int b); func中的执行代码和sum函数相同
22     printf("num:%d,a=%c,str=%s,func(1, 2)=%d\n", num, ch, str, func(15, 20));
23     getchar();
24     return 0;
25 }

再说说结构体的长度。结构体的长度要略大于或等于其内部成员的总长度。主要是为了程序速度,在一个结构体内有多个类型的成员的时候,会做一些“对齐”处理,该处理有可能导致结构体变量占用空间变大。

 1 #define  _CRT_SECURE_NO_WARNINGS
 2 #include <stdio.h>
 3 #include <stdlib.h>
 4 #include <string.h>
 5 
 6 struct Student1
 7 {
 8     int num;
 9     char name[32];
10     short sex;
11 };
12 struct Student2
13 {
14     long long num;
15     char name[32];
16     short sex;
17 };
18 
19 int main(int arg, char * args[])
20 {
21     struct Student1 stu1;
22     struct Student2 stu2;
23     printf("int:%d, char:%d, short:%d, longlong:%d\n", sizeof(int), sizeof(char), sizeof(short), sizeof(long long)); // 比较4种数据类型的长度
24     printf("long:%d,int:%d\n", sizeof(struct Student2), sizeof(struct Student1)); // 比较两种结构体的长度
25     printf("stu1:%x,stu2:%x\n", &stu1, &stu2); // 两个结构体变量的地址
26     getchar();
27     return 0;
28 }

上面这段程序的输出结构为:

int:4, char:1, short:2, longlong:8
long:48,int:40
stu1:eafeb4,stu2:eafe7c

从第一行输出信息来看,我们可以算出结构体Student1声明的变量(int num, char name[32], short sex)的总长度应该为38,而第二行的实际输出结果为40.

同样可以算出结构体Student2声明的变量(long long num, char name[32], short)的总长度应该为42,而实际结果为48.

一个结构体的长度必定是其内部长度最大基本数据类型元素的整数倍,上面Student1和Student2都符合该项(数组不是基本数据类型)。

而且结构体变量的首地址必定能被其内部长度最大基本数据类型元素整除,如上面eafeb4可以被4整除,eafe7c可以被8整除。

3.结构体的一点高级用法

1.通过地址取结构体内成员的值(代码作为示例,真实开发中应该不会这样写)

 1 #define  _CRT_SECURE_NO_WARNINGS
 2 #include <stdio.h>
 3 #include <stdlib.h>
 4 #include <string.h>
 5 
 6 enum Sex
 7 {
 8     Male,
 9     Female
10 };
11 
12 struct Student1
13 {
14     int num;
15     char name[32];
16     short sex;
17 };
18 struct Student2
19 {
20     long long num;
21     char name[39];
22     short sex;
23 };
24 
25 int main(int arg, char * args[])
26 {
27     char * stu1Name = NULL;
28     char * stu2Name = NULL;
29     struct Student1 stu1 = { 100, "LiLei", Male };
30     struct Student2 stu2 = { 100, "WaLiu", Female };
31 
32     printf("int:%d, char:%d, short:%d, longlong:%d\n", sizeof(int), sizeof(char), sizeof(short), sizeof(long long)); // 比较4种数据类型的长度
33     printf("long:%d,int:%d\n", sizeof(struct Student2), sizeof(struct Student1)); // 比较两种结构体的长度
34     printf("stu1:%x,stu2:%x\n", &stu1, &stu2); // 两个结构体变量的地址
35     printf("stu1:%x,stu2:%x\n", &stu1 + 4, &stu2 + 8);
36 
37     stu1Name = (char *)(((char *)&stu1) + 4); // 取stu1的地址,向后偏移4位,这个地址就是name的首地址,将其赋给stu1Name
38     stu2Name = (char *)(((char *)&stu2) + 8); // 取stu2的地址,向后偏移8位,这个地址就是name的首地址,将其赋给stu2Name
39 
40     printf("stu1:%s,stu2:%s\n", stu1Name, stu2Name); // 打印出值
41     getchar();
42     return 0;
43 }

以上代码执行结构为:

int:4, char:1, short:2, longlong:8
long:56,int:40
stu1:107fdb0,stu2:107fd70
stu1:107fe50,stu2:107ff30
stu1:LiLei,stu2:WaLiu

这说明可以通过地址偏移的方式取得结构体变量内部的值。

转载于:https://www.cnblogs.com/yaoh/p/4396866.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/459498.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

全国小学四则运算1.0

程序&#xff1a;全国小学四则运算1.0 源代码&#xff1a; import javax.swing.*; import java.awt.*; import java.awt.event.*; //一开始的界面 public class Menu extends JFrame implements ActionListener{JButton enter;public Menu(){super("小学生四则运算大考验&…

Chrome开发者工具详解

作为一名前端开发者&#xff0c;打交道最多的可能是和浏览器。市面上各种浏览器多不胜数&#xff0c;主流的有Chrome&#xff0c;Firefox&#xff0c;Safari&#xff0c;IE&#xff0c;Opera&#xff0c;非主流的如360&#xff0c;遨游&#xff0c;QQ浏览器&#xff0c;搜狗浏览…

SRAM与SDRAM的区别

http://www.cnblogs.com/spartan/archive/2011/05/06/2038747.html SDRAM SDRAM(Synchronous Dynamic Random Access Memory)同步动态随机存取存储器&#xff0c;同步是指Memory工作需要步时钟&#xff0c;内部的命令的发送与数据的传输都以它为基准&#xff1b;动态是指存储阵…

redis学习笔记-安装与入门

Linux下安装redis mkdir /usr/local/redis && cd /usr/local/redis 下载&#xff1a;wget http://download.redis.io/releases/redis-3.0.5.tar.gz 解压&#xff1a;tar xzf redis-3.0.5.tar.gz 安装到指定目录&#xff1a; cd redis-3.0.5 make PREFIX/usr/local/red…

python多列排序

python的sort()和sorted()函数可以进行多列排序。在一个文本或者列表有多列时&#xff0c;这是一个很好用的技巧。 首先&#xff0c;看一下待排序的数据 这是一个csv文件&#xff0c;它有6列&#xff0c;我们需要首先对第一列排序&#xff0c;再对第六列排序 46896961,19210048…

asp.net下用js实现弹出子窗口选定值并返回

对应上一篇博客代码&#xff1a; 父页面&#xff1a; 1 <head runat"server">2 <meta http-equiv"X-UA-Compatible" content"IE9" >3 <title></title>4 <script type"text/javascript">5 …

靠能力赚大钱,是最最可笑的谎言

很多人其实到现在也没弄明白他们是怎么赚钱的&#xff0c;很多人都会把自己成功归结为能力的结果&#xff0c;事实上这个是最大的可悲……靠能力赚钱&#xff0c;是一个弥天大谎&#xff01;我自己一直在反思这些年里的很多事情&#xff0c;突然发现所有的成功失败&#xff0c;…

PHP 遍历数组的方法汇总

From: http://www.cnblogs.com/jamespb/archive/2011/09/01/2161673.html 1. foreach() foreach()是一个用来遍历数组中数据的最简单有效的方法。 #example1: <?php$colors array(red,blue,green,yellow);foreach ($colorsas$color){echo "Do you like $color? <b…

WPF自定义控件与样式(1)-矢量字体图标(iconfont)

原文:WPF自定义控件与样式(1)-矢量字体图标(iconfont)一&#xff0e;图标字体 图标字体在网页开发上运用非常广泛&#xff0c;具体可以网络搜索了解&#xff0c;网页上的运用有很多例子&#xff0c;如Bootstrap。但在C/S程序中使用还不多&#xff0c;字体图标其实就是把矢量图…

从菜鸟到伟大的征程

自我介绍&#xff1a; 我是carol&#xff0c;现在是一名菜鸟程序员&#xff0c;我励志成为像尼奥那样的hacker&#xff0c;尽管有很多的不现实性&#xff0c;但是丝毫不减我对于这方面的热情。其实&#xff0c;说到底我并不是很 喜欢编程&#xff0c;尤其是现在的编程方式&…

Linux下快速搭建DNS服务器

一、术语解释:TTL Time To Live 缓冲保留时间ORIGIN 属于哪个域 代指域IN 开头需要空格SOA 一行记录类型的开始参数&#xff1a;forwarders {} 指向自己无法解析的域名跳转到外部dns服务测试方法&#xff1a;host 域名&#xff08;host IP&#xff09; 使用nslookup方法测试 使…

IOS

http://blog.csdn.net/zc639143029/article/details/47112179转载于:https://www.cnblogs.com/redasurc/p/5007986.html

解决Cacti监控图像断断续续问题

最近cacti的图像全都是断断续续。新加的设备&#xff0c;图像也是这样&#xff0c;查看cacti 的log发现大量下面类似的错误信息&#xff1a;04/12/2011 03:54:37 PM - SPINE: Poller[0] Host[233] DS[4990] WARNING: SNMP timeout detected [500 ms], ignoring host 192.168.2.…

LintCode: Search A 2d Matrix

1. 设查找的数位y&#xff0c;第一行最后一列的数位x 如果x<y&#xff0c;x是第一行最大的&#xff0c;所以第一行都小于y&#xff0c;删除第一行&#xff1b; 如果x>y&#xff0c;x是最后一列最小的&#xff0c;所以最后一列都大于y&#xff0c;删除最后一列&#xff1b…

C++ this 指针

This 指针&#xff1a;this 是C中的一个关键字&#xff0c;也是一个常量指针&#xff0c;指向当前对象&#xff08;具体说是当前对象的首地址&#xff09; 。通过 this&#xff0c;可以访问当前对象的成员变量和成员函数 。 Student Stu ; //通过Student类创建对象 Stu Stude…

css3 loading 效果1

代码&#xff1a; <!doctype html> <html lang"en"> <head> <meta charset"UTF-8"> <title>Document</title> <style> #box{position: relative;margin: 100px;} #box span{display: block;width: 9px;height: …

计算几何 - XOJ 1171 线段求交

问题 Description 线段求交即给定一组线段求出这些线段的相交情况&#xff0c;它是计算几何的基础问题之一,有着广泛的应用. Input第一行为一个正整数n表示线段的个数&#xff08;n<10000&#xff09;第二行到第n1行每行包括4个正整数x1,y1,x2,y2, (0 < x1,y1,x2,y2 <…

类成员函数解析

1、 构造函数&#xff1a; &#xff08;1&#xff09; 定义&#xff1a;是一个特殊的成员函数&#xff0c;名字与类名相同&#xff0c;创建类类型对象时&#xff0c;由编译器自动调用&#xff0c;在对象的生命周期内只且只调用一次&#xff0c;以保证每个数据成员都有一…

微信开发学习日记(六):weiphp框架

最近重点在看weiphp这个开源的第三方微信公众平台框架。在网上找微信资料&#xff0c;找到了这个。很早之前&#xff0c;就初步学习了Thinkphp和Onethink2个开源框架&#xff0c;当看到weiphp是用这2个框架开发的时候&#xff0c;我就更愿意去学习&#xff0c;毕竟学习成本很低…

SVN常用命令备注

1、将文件checkout到本地目录 svn checkout path&#xff08;path是服务器上的目录&#xff09; 例如&#xff1a;svn checkout svn://192.168.1.1/pro/domain 简写&#xff1a;svn co 2、往版本库中添加新的文件 svn add file 例如&#xff1a;svn add test.php(添加test.php)…