在 .NET Microframework 中找到三个双打中最大的最有效方法?
我有三个双打:
double[] accel = new double[3]
{
_Razor.Accel_X,
_Razor.Accel_Y,
_Razor.Accel_Z,
};
在 NETMF 中找到其中最大的一个最有效的方法是什么?
I have three doubles:
double[] accel = new double[3]
{
_Razor.Accel_X,
_Razor.Accel_Y,
_Razor.Accel_Z,
};
What's the most efficient way to find the largest of these in NETMF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我相信这是通常的方式。
double max = max((max(accel[0],accel[1]),accel[2])
i believe it is the usual way.
double max = max((max(accel[0],accel[1]),accel[2])
大概就是这样吧?
或者你想要一些更漂亮的东西?
Probably just this, right?
Or did you want something prettier?
使用 LINQ 的最短解决方案:accel.Max();
The shortest solution with LINQ:
accel.Max();