如何在C ++代码中用命名常量自动替换字符串文字?

时间:2018-09-04 13:59:01

标签: automated-refactoring

我正在寻找一个脚本或简单的工具,或者可能是VS2017插件,可以用命名的常量替换C ++代码中的字符串文字,例如,它应该对此进行转换:

                if (key == L"ObjectType" || key == L"Object type")
                {
                }

对此:

static const wchar_t ObjectType1[] = L"ObjectType";
static const wchar_t xObjectType2[] = L"Object Type";

                if (key == ObjectType1 || key == ObjectType2)
                {
                }

0 个答案:

没有答案