函数和指针

作者:追风剑情 发布于:2020-3-16 14:43 分类:C

示例

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <stdbool.h> //C99特性
  5. #include <string.h>
  6. #include <math.h>
  7. #include <ctype.h>
  8.  
  9. //函数指针指向函数代码起始处的内存地址
  10. //要注意运算符*的优先级
  11. //void (*pf)(char *); //pf是一个指向函数的指针
  12. //void *pf(char *); //pf是一个返回字符指针的函数
  13. /*
  14. 提示:
  15. 要声明一个指向特定类型函数的指针,可以先声明一个该类型的函数,然后把函数名替换成(*pf)
  16. 形式的表达式。然后,pf就成为指向该类型函数的指针。
  17. */
  18.  
  19. #define LEN 81
  20. char* s_gets(char *st, int n);
  21. char showmenu(void);
  22. void eatline(void); // 读取至行末尾
  23. void show(void(*fp)(char *), char * str);
  24. void ToUpper(char *); // 把字符串转换为大写
  25. void ToLower(char *); // 把字符串转换为小写
  26. void Transpose(char *); // 大小写转置
  27. void Dummy(char *); // 不更改字符串
  28.  
  29. //typedef void (*V_FP_CHARP) (char *);
  30.  
  31. int main(int argc, char* argv[])
  32. {
  33. char line[LEN];
  34. char copy[LEN];
  35. char choice;
  36. // 声明一个函数指针,被指向的函数接受char *类型的参数,无返回值
  37. void (*pfun) (char *);
  38. //或者这样声明
  39. //V_FP_CHARP pfun;
  40. pfun = Dummy;
  41.  
  42. puts("Enter a string (empty line to quit):");
  43. while (s_gets(line, LEN) != NULL && line[0] != '\0')
  44. {
  45. while ((choice = showmenu()) != 'n')
  46. {
  47. switch (choice)
  48. {
  49. //函数名代表函数的地址
  50. //注意:只能把类型匹配的函数地址赋给pfun
  51. case 'u': pfun = ToUpper; break;
  52. case 'l': pfun = ToLower; break;
  53. case 't': pfun = Transpose; break;
  54. case 'o': pfun = Dummy; break;
  55. }
  56. strcpy(copy, line); // 为show()函数拷贝一份
  57. show(pfun, copy); // 根据用户的选择,使用选定的函数
  58. }
  59. puts("Enter a string (empty line to quit):");
  60. }
  61. puts("Bye!");
  62.  
  63. system("pause");
  64. return 0;
  65. }
  66.  
  67. char showmenu(void)
  68. {
  69. char ans;
  70. puts("Enter menu choice:");
  71. puts("u) uppercase l) lowercase");
  72. puts("t) transposed case o) original case");
  73. puts("n) next string");
  74. ans = getchar(); // 获取用户输入
  75. ans = tolower(ans); // 转换为小写
  76. eatline(); //清理输入
  77. //判断输入的字符是否包含在ulton字符串中
  78. while (strchr("ulton", ans) == NULL)
  79. {
  80. puts("Please enter a u, l, t, o, or n:");
  81. ans = tolower(getchar());
  82. eatline();
  83. }
  84. return ans;
  85. }
  86.  
  87. void eatline(void)
  88. {
  89. while (getchar() != '\n')
  90. continue;
  91. }
  92.  
  93. void ToUpper(char* str)
  94. {
  95. while (*str)
  96. {
  97. *str = toupper(*str);
  98. str++;
  99. }
  100. }
  101.  
  102. void ToLower(char* str)
  103. {
  104. while (*str)
  105. {
  106. *str = tolower(*str);
  107. str++;
  108. }
  109. }
  110.  
  111. void Transpose(char* str)
  112. {
  113. while (*str)
  114. {
  115. if (islower(*str))
  116. *str = toupper(*str);
  117. else if (isupper(*str))
  118. *str = tolower(*str);
  119. str++;
  120. }
  121. }
  122.  
  123. void Dummy(char* str)
  124. {
  125. // 不改变字符串
  126. }
  127.  
  128. //void show(V_FP_CHARP fp, char *)
  129. void show(void(*fp)(char*), char* str)
  130. {
  131. //由于历史原因ANSI C认为下面两种函数调用方式等价
  132. (*fp)(str); // 把用户选定的函数作用于str
  133. //fp(str); //与(*fp)(str)写法等效
  134. puts(str); // 显示结果
  135. }
  136.  
  137. // 自己实现读取函数
  138. char* s_gets(char* st, int n)
  139. {
  140. char* ret_val;
  141. int i = 0;
  142. ret_val = fgets(st, n, stdin);
  143. if (ret_val) //即,ret_val != NULL
  144. {
  145. while (st[i] != '\n' && st[i] != '\0')
  146. i++;
  147. if (st[i] == '\n')
  148. st[i] = '\0';
  149. else
  150. while (getchar() != '\n')
  151. continue;
  152. }
  153. return ret_val;
  154. }

运行测试

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号