向函数传递结构指针

作者:追风剑情 发布于:2020-1-20 14:04 分类:C

示例1: 传递结构体指针

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdbool.h>
  4.  
  5. #define NLEN 30
  6.  
  7. struct namect {
  8. char fname[NLEN];
  9. char lname[NLEN];
  10. int letters;
  11. };
  12.  
  13. char* s_gets(char* st, int n);
  14. void getinfo(struct namect*);
  15. void makeinfo(struct namect*);
  16. void showinfo(const struct namect*);
  17.  
  18. int main(int argc, char* argv[])
  19. {
  20. struct namect person;
  21.  
  22. getinfo(&person);
  23. makeinfo(&person);
  24. showinfo(&person);
  25.  
  26. system("pause");
  27. return 0;
  28. }
  29.  
  30. void getinfo(struct namect* pst)
  31. {
  32. printf("Please enter your first name.\n");
  33. s_gets(pst->fname, NLEN);
  34. printf("Please enter your last name.\n");
  35. s_gets(pst->lname, NLEN);
  36. }
  37.  
  38. void makeinfo(struct namect* pst)
  39. {
  40. pst->letters = strlen(pst->fname) + strlen(pst->lname);
  41. }
  42.  
  43. void showinfo(const struct namect* pst)
  44. {
  45. printf("%s %s, your name contains %d letters.\n",
  46. pst->fname, pst->lname, pst->letters);
  47. }
  48.  
  49. // 自己实现读取函数
  50. char* s_gets(char* st, int n)
  51. {
  52. char* ret_val;
  53. int i = 0;
  54. ret_val = fgets(st, n, stdin);
  55. if (ret_val) //即,ret_val != NULL
  56. {
  57. while (st[i] != '\n' && st[i] != '\0')
  58. i++;
  59. if (st[i] == '\n')
  60. st[i] = '\0';
  61. else
  62. while (getchar() != '\n')
  63. continue;
  64. }
  65. return ret_val;
  66. }

运行测试
1111.png

示例2:返回结构体

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdbool.h>
  4.  
  5. #define NLEN 30
  6.  
  7. struct namect {
  8. char fname[NLEN];
  9. char lname[NLEN];
  10. int letters;
  11. };
  12.  
  13. char* s_gets(char* st, int n);
  14. struct namect getinfo(void);
  15. struct namect makeinfo(struct namect);
  16. void showinfo(struct namect);
  17.  
  18. int main(int argc, char* argv[])
  19. {
  20. struct namect person;
  21.  
  22. person = getinfo();
  23. person = makeinfo(person);
  24. showinfo(person);
  25.  
  26. system("pause");
  27. return 0;
  28. }
  29.  
  30. struct namect getinfo(void)
  31. {
  32. struct namect temp;
  33. printf("Please enter your first name.\n");
  34. s_gets(temp.fname, NLEN);
  35. printf("Please enter your last name.\n");
  36. s_gets(temp.lname, NLEN);
  37. return temp;
  38. }
  39.  
  40. struct namect makeinfo(struct namect info)
  41. {
  42. info.letters = strlen(info.fname) + strlen(info.lname);
  43. return info;
  44. }
  45.  
  46. void showinfo(struct namect info)
  47. {
  48. printf("%s %s, your name contains %d letters.\n",
  49. info.fname, info.lname, info.letters);
  50. }
  51.  
  52. // 自己实现读取函数
  53. char* s_gets(char* st, int n)
  54. {
  55. char* ret_val;
  56. int i = 0;
  57. ret_val = fgets(st, n, stdin);
  58. if (ret_val) //即,ret_val != NULL
  59. {
  60. while (st[i] != '\n' && st[i] != '\0')
  61. i++;
  62. if (st[i] == '\n')
  63. st[i] = '\0';
  64. else
  65. while (getchar() != '\n')
  66. continue;
  67. }
  68. return ret_val;
  69. }

运行测试
1111.png

传递结构体指针效率更高,若不希望被调函数修改结构体成员的值,可以在形参前加const限定符。

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号