指向结构的指针

作者:追风剑情 发布于:2020-1-19 16:01 分类:C

示例

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdbool.h>
  4.  
  5. #define LEN 20
  6.  
  7. const char* msgs[] =
  8. {
  9. " Thank you for the wonderful evening, ",
  10. "You certainly prove that a ",
  11. "is a special kind of guy. We must get together",
  12. "over a delicious ",
  13. " and have a few laughs"
  14. };
  15.  
  16. struct names {
  17. char first[LEN];
  18. char last[LEN];
  19. };
  20.  
  21. struct guy {
  22. struct names handle; //嵌套结构
  23. char favfood[LEN];
  24. char job[LEN];
  25. float income;
  26. };
  27.  
  28. /*
  29. 在有些系统中,一个结构的大小可能大于它各成员大小之和。
  30. 这是因为系统对数据进行校准的过程中产生了一些“缝隙”。
  31. 例如,有些系统必须把每个成员都放在偶数地址上,或4的位数
  32. 地址上。在这种系统中,结构的内部就存在未使用的“缝隙”。
  33. */
  34.  
  35. int main(int argc, char* argv[])
  36. {
  37. // 初始化一个结构变量
  38. struct guy fellow[2] = {
  39. { { "Ewen", "Villard" },
  40. "grilled salmon",
  41. "personality coach",
  42. 68112.00
  43. },
  44. {
  45. { "Rodney", "Swillbelly" },
  46. "tripe",
  47. "tabloid editor",
  48. 432400.00
  49. }
  50. };
  51. struct guy* him; /* 这是一个指向结构的指针 */
  52. printf("address #1: %p #2: %p\n", &fellow[0], &fellow[1]);
  53. /* 和数组不同,结构名并不是结构的地址。 him=fellow[0](错误) */
  54. him = &fellow[0]; /* 告诉编译器该指针指向何处 */
  55. printf("pointer #1: %p #2: %p\n", him, him + 1);
  56. /*
  57. .运算符比*运算符优先级高,
  58. &与*是一对互逆运算
  59. him==&fellow[0]
  60. *him==fellow[0]
  61. 假设 him == &barney
  62. 下面的关系恒成立:
  63. barnet.income == (*him).income == him->income
  64. */
  65. printf("him->income is $%.2f: (*him).income is $%.2f\n",
  66. him->income, (*him).income);
  67. him++; /* 指向下一个结构 */
  68. printf("him->favfood is %s: him->handle.last is %s\n",
  69. him->favfood, him->handle.last);
  70.  
  71. system("pause");
  72. return 0;
  73. }

运行测试

111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号