文章目录
一、指针数组用法 ( 菜单选择 )
二、完整代码示例
一、指针数组用法 ( 菜单选择 )
使用场景 : 用户输入一个 字符串 , 判定该 字符串 是菜单中的哪个选项 ;
定义 指针数组 , 数组中存放着指针 , 每个指针指向 字符串 常量 , 字符串常量在 全局区 中的 常量区 ;
// 指针数组 , 数组中存放着指针 , 每个指针指向 字符串 常量 // 字符串常量在 全局区 中 char *menu_array[] = { "query", "update", "insert", "delete" };
将 指针数组 菜单 和 指针数组 大小 , 以及要查询的 字符串 ;.
计算数组大小 : 使用如下宏定义 , 计算数组大小 ;
// 计算数组长度 #define LEN(array) (sizeof(array) / sizeof(*array))
函数参数定义 :
/** * @brief searche_menu_table 菜单列表 中查找 字符串位置 * @param menu_table 指针数组 , 数组元素是指针 , 指针指向字符串 * @param array_size 指针数组 中 元素个数 * @param str 要查找的字符串 * @param menu_position 字符串位置 * @return 返回函数是否执行成功 */ int searche_menu_table(const char *menu_table[], const int array_size, const char* str, int *menu_position) {}
遍历 指针数组 , 查找字符串位置 :
// 遍历字符串数组 for(i=0; i < array_size; i++) { // 如果找到字符串 , 则返回 if(strcmp(str, menu_table[i]) == 0) { *menu_position = i; return ret; } }
二、完整代码示例
完整代码示例 :
#include <stdio.h> #include <stdlib.h> #include <string.h> // 计算数组长度 #define LEN(array) (sizeof(array) / sizeof(*array)) /** * @brief searche_menu_table 菜单列表 中查找 字符串位置 * @param menu_table 指针数组 , 数组元素是指针 , 指针指向字符串 * @param array_size 指针数组 中 元素个数 * @param str 要查找的字符串 * @param menu_position 字符串位置 * @return 返回函数是否执行成功 */ int searche_menu_table(const char *menu_table[], const int array_size, const char* str, int *menu_position) { // 函数返回值, 标志函数执行结果状态 , 0 表示执行成功 int ret = 0; // 循环控制变量 int i = 0; // 验证指针合法性 if (menu_table==NULL || str==NULL || menu_position==NULL) { ret = -1; printf("error : menu_table==NULL || str==NULL || menu_position==NULL"); return ret; } // 遍历字符串数组 for(i=0; i < array_size; i++) { // 如果找到字符串 , 则返回 if(strcmp(str, menu_table[i]) == 0) { *menu_position = i; return ret; } } // 在 menu_table 字符串数组中 , 没有找到 str 字符串 // 返回 -2 错误状态 ret = -2; // 设置 -1 位置 *menu_position = -1; return ret; } /** * @brief 主函数入口 * @return */ int main() { // 记录字符串在菜单中的位置 int menu_position = 0; int i = 0; // 指针数组 , 数组中存放着指针 , 每个指针指向 字符串 常量 // 字符串常量在 全局区 中 char *menu_array[] = { "query", "update", "insert", "delete" }; // 在 字符串指针数组 中 查询对应字符串 searche_menu_table( menu_array, LEN(menu_array),"delete", &menu_position); // 打印查找到的位置 printf("menu_position = %d\n", menu_position); // 命令行不要退出 system("pause"); return 0; }
执行结果 :
menu_position = 3 请按任意键继续. . .