作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
<分区>
我有以下内容:
MovingDirection.UP;
我想使用 !运算符如下:
!MovingDirection.Up; // will give MovingDirection.Down
(这是一个枚举)
我试过:
public static MovingDirection operator !(MovingDirection f)
{
return MovingDirection.DOWN;
}
...但我收到一个错误:
Parameter type of this unary operator must be the containing type
有什么想法吗?
我是一名优秀的程序员,十分优秀!