声明结构体

作者:追风剑情 发布于:2020-1-15 10:38 分类:C

示例

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdbool.h>
  4.  
  5. char* s_gets(char *st, int n);
  6. #define MAXTITL 41 /* 书名的最大长度 + 1 */
  7. #define MAXAUTL 31 /* 作者姓名的最大长度 + 1 */
  8.  
  9. // 结构声明可以放在所有函数外部,也可以放在函数内部
  10. /* 声明结构(模板) */
  11. struct book {
  12. //定义成员(member)或字段(field)
  13. char title[MAXTITL];
  14. char author[MAXAUTL];
  15. float value;
  16. };
  17.  
  18. /*
  19. struct book {
  20. char title[MAXTITL];
  21. char author[MAXAUTL];
  22. float value;
  23. } library; //也可以这样声明结构变量
  24. */
  25.  
  26. /*
  27. struct { //省略结构标记
  28. char title[MAXTITL];
  29. char author[MAXAUTL];
  30. float value;
  31. } library; //也可以这样声明结构变量
  32. */
  33.  
  34. int main(int argc, char* argv[])
  35. {
  36. //struct book library; // 声明结构体变量
  37. /*
  38. 初始化一个静态存储期的结构,初始化列表中的值必须是常量。
  39. 初始化一个自动存储期的结构,初始化列表中的值可以不是常量。
  40. */
  41. struct book library = { // 声明结构体变量的同时初始化成员
  42. "The Pious Pirate and the Devious Damsel",
  43. "Renee Vivotte",
  44. 1.95f
  45. };
  46.  
  47. /* 结构的初始化器 (也被称为标记化结构初始化语法)
  48. struct book library = {
  49. .title = "The Pious Pirate and the Devious Damsel",
  50. .author = "Renee Vivotte",
  51. .value = 1.95
  52. };
  53. */
  54.  
  55. /* 普通初始化器 与 指定初始化器 混合使用
  56. struct book library = { // 声明结构体变量的同时初始化成员
  57. .value = 1.95,
  58. .author = "Renee Vivotte",
  59. 2.85 //value值又被设成了2.85, 在结构体声明中因为value跟在author之后
  60. };*/
  61. printf("Please enter the book title.\n");
  62. s_gets(library.title, MAXTITL);
  63. printf("Now enter the author.\n");
  64. s_gets(library.author, MAXAUTL);
  65. printf("Now enter the value.\n");
  66. scanf("%f", &library.value);
  67. printf("%s by %s: $%.2f\n", library.title, library.author, library.value);
  68. printf("%s: \"%s\" ($%.2f)\n", library.author, library.title, library.value);
  69. printf("Done.\n");
  70.  
  71. system("pause");
  72. return 0;
  73. }
  74.  
  75. // 自己实现读取函数
  76. char* s_gets(char* st, int n)
  77. {
  78. char* ret_val;
  79. int i = 0;
  80. ret_val = fgets(st, n, stdin);
  81. if (ret_val) //即,ret_val != NULL
  82. {
  83. while (st[i] != '\n' && st[i] != '\0')
  84. i++;
  85. if (st[i] == '\n')
  86. st[i] = '\0';
  87. else
  88. while (getchar() != '\n')
  89. continue;
  90. }
  91. return ret_val;
  92. }

运行测试

11111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号