我们说我有enum
这样的话:
public enum Something
{
This = 10,
That = 5,
It = 11
}
我想知道是否有可能根据它们的顺序获得下一个enum
,而不是它们的价值或名称。
不幸的是我无法控制数字,我只能更改名称。
例如,如果我有That
,则下一个是It
而不是This
。
伪代码:
var current = Something.That;
Console.WriteLine(current);
// prints That
current = GetNextEnum(Something.That);
// prints It
Console.WriteLine(current);
current = GetNextEnum(Something.It);
// prints This
Console.WriteLine(current);
// And so the cycle continues...
有没有办法实现这个目标?
更新:
我不能每个脉冲执行多个状态,所以我需要知道我运行了哪个状态以了解接下来要运行的状态,例如:
private Something _state = Something.That;
private void Pulse()
{
// this will run every pulse the application does
foreach (var item in (Something)Enum.GetValues(typeof(Something)))
{
if (_state == item)
{
// Do some stuff here
}
_state = next item;
return;
}
}
我也试图避免为每个州制作一个块,而是让状态在动态执行,因为它们可以被添加或删除。
所以我真正的问题是如何知道接下来会发生什么以及我在哪里。
答案 0 :(得分:0)
public Something GetNextEnum(Something e)
{
switch(e)
{
case This:
return That;
case That:
return It;
case It:
return This;
default:
throw new IndexOutOfRangeException();
}
}
或者将其作为扩展名:
public static class MySomethingExtensions {
public static Something GetNextEnum(this Something e)
{
switch(e)
{
case This:
return That;
case That:
return It;
case It:
return This;
default:
throw new IndexOutOfRangeException();
}
}
}
你可以像这样使用它:
_status=_status.GetNextEnum();