我有一个普查员:
classdef Commands
properties
commandString;
readonly;
end
methods
function obj = Commands(commandString, readonly)
obj.commandString = commandString;
obj.readonly= readonly;
end
end
enumeration
PositionMode('p', false)
TravelDistance('s', false)
end
end
我有一个字符串:
currentCommand = 'PositionMode';
我希望能够回归:
Commands.PositionMode
有没有比
更好的解决方案methods(Static)
function obj = str2Command(string)
obj = eval(['Commands.' string]);
end
end
答案 0 :(得分:5)
与结构一样,您可以将dynamic field names与对象一起使用。
使用
currentCommand = PositionMode
电话
Commands.(currentCommand)
评估为
Commands.PositionMode
因此以优雅便捷的方式解决您的问题。