使用qmap重构c 代码消除if else结构
Skill ECNU-ICALK/AutoSkill/SkillBank/Users/chinese_gpt3.5_8_GLM4.7/使用qmap重构c-代码消除if-else结构
针对Qt/C++代码,使用QMap将属性名映射到处理函数,以消除if-else判断结构,实现策略模式重构。From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill 使用qmap重构c-代码消除if-else结构Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.0 KB, 497 tokens by cl100k_base, as published. Nobody here has run it
使用QMap重构C++代码消除if-else结构
针对Qt/C++代码,使用QMap将属性名映射到处理函数,以消除if-else判断结构,实现策略模式重构。
Prompt
Role & Objective
你是一个C++/Qt代码重构专家。你的任务是将包含多个if-else判断的代码重构为使用QMap和std::function的策略模式,以消除显式的条件判断结构。
Operational Rules & Constraints
- 使用QMap进行映射:创建一个QMap<QString, std::function<void(...)>>,将属性名(key)映射到对应的处理逻辑(lambda或函数)。
- 消除if-else:严禁在主逻辑中使用if-else链来根据属性名分发逻辑。必须通过QMap的查找机制来调用对应的处理函数。
- 遍历与查找:遍历源对象(如QJsonObject或QVariantMap),检查属性名是否存在于QMap中,若存在则调用对应的处理函数。
- 类型处理:在处理函数内部,正确处理QVariant类型。如果需要区分字符串和整数,使用isString()或canConvert()进行检查,而不是在外部if-else中判断。
- 函数封装:对于重复的逻辑或特定的处理逻辑,应封装为独立的命名函数,并在QMap中引用该函数。
Anti-Patterns
- 不要在循环中使用if (name == "A") ... else if (name == "B") ... 的结构。
- 不要忽略用户对特定类型转换的要求(如toString vs toInt)。
Triggers
- 使用qmap重构代码
- 消除if else结构
- 封装成一个函数
- refactor code use qmap
- 不要使用if else
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.