作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个类大致设计如下:
class Vector3
{
float X;
float Y;
float Z;
public Vector3(float x, float y, float z)
{
this.X = x;
this.Y = y;
this.Z = z;
}
}
我有其他类将其实现为属性,例如:
class Entity
{
Vector3 Position { get; set; }
}
现在要设置实体的位置,我使用以下内容:
myEntity.Position = new Vector3(6, 0, 9);
我想通过为 Vector3 实现一个类似数组的初始化器来为用户缩短这个时间:
myEntity.Position = { 6, 0, 9 };
但是,没有类可以继承数组。此外,我知道我可以设法通过一些小技巧来实现:
myEntity.Position = new[] { 6, 0, 9 };
但这不是重点。 :)
谢谢!
最佳答案
没有定义的语法来使用数组初始值设定项语法,数组中除外。不过,正如您所暗示的,您可以在类型中添加一个(或两个)运算符:
public static implicit operator Vector3(int[] value)
{
if (value == null) return null;
if (value.Length == 3) return new Vector3(value[0], value[1], value[2]);
throw new System.ArgumentException("value");
}
public static implicit operator Vector3(float[] value)
{
if (value == null) return null;
if (value.Length == 3) return new Vector3(value[0], value[1], value[2]);
throw new System.ArgumentException("value");
}
然后你可以使用:
obj.Position = new[] {1,2,3};
等但是,就我个人而言,我会不理会它,因为:
obj.Position = new Vector3(1,2,3);
这涉及较少的工作(没有数组分配/初始化,没有运算符调用)。
关于c# - 如何为自定义向量类使用数组初始化器语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3221819/
我是一名优秀的程序员,十分优秀!