[问题]Overload 三角函数

楼主: commandoEX (卡曼都)   2019-05-01 15:53:15
事情是这样的
我写了一个自定义的结构 Angle
储存值是角度(degree),可以透过属性读径度(rad)、圈(round)
、弧分(arcmin)和弧秒(arcsec)(这些属性都是double)
现在想让Angle跟一般的double一样可以丢进三角函数中
像是Math.Sin(Angle)
而不是写Math.sin(Angle.rad)
目前看到比较适合的解决方法是使用Class Helper
但是我写了一个 MathHelper的Class
我试着写 Math.Sin(Angle)是没法编译过的
如果是写MathHelper.Sin(Angle)就没问题
不过这样我还不如就写Math.Sin(Angle.rad)比较省事
是System.Math本来就不能用Class Helper去多载新函式?
还是我写法不正确?
下面是程式码
using System;
namespace UnitSystem
{
public struct Angle//角度
{
public const double R2D = 57.29577951308232087680;
public const double D2R = 0.01745329251994329577;
double _degree;
public double degree //角度
{
get => _degree;
set => _degree = value;
}
public double round //圈数
{
get { return this._degree / 360; }
set { _degree = value * 360; }
}
public double rad //径度
{
get { return this._degree * D2R; }
set { _degree = value * R2D; }
}
public double arcmin //弧分
{
get { return this._degree * 60; }
set { _degree = value / 60; }
}
public double arcsec
{
get { return this._degree * 3600; }
set { _degree = value / 3600; }
}
public Angle(double value)
{
_degree = value*R2D;
}
}
public static class MathHelper
{
public static double Sin(Angle ang)
{
return Math.Sin(ang.rad);
}
public static double Cos(Angle ang)
{
return Math.Cos(ang.rad);
}
public static double Sinh(Angle ang)
{
return Math.Sinh(ang.rad);
}
public static double Cosh(Angle ang)
{
return Math.Cosh(ang.rad);
}
public static double Tan(Angle ang)
{
return Math.Tan(ang.rad);
}
public static double Tanh(Angle ang)
{
return Math.Tanh(ang.rad);
}
public static Angle aTan(Angle ang)
{
return Math.Atan(ang.rad);
}
}
}
作者: forewero (木日一)   2019-05-01 20:55:00
class helper isn't a language feature.
作者: YahooTaiwan (超可爱南西我老婆)   2019-05-01 22:57:00
查一下 extension method
作者: Litfal (Litfal)   2019-05-02 20:52:00
System.Math 是静态类,不能另外写扩充方法,扩充方法是给实体类用的
作者: forewero (木日一)   2019-05-12 20:04:00
CLASS HELPER只是称呼,它就是一个CLASS而已,没超能力
作者: WoodChen (木头)   2019-05-15 00:46:00
C++ 有类似的功能 https://pse.is/HV3XQ连结中的 class 能"直接"转 int但 C# 连 int x = 0.0; 都过不了,应该没办法自动转型
楼主: commandoEX (卡曼都)   2019-05-15 22:17:00
隐式转型是有的啊
作者: ssccg (23)   2019-05-17 16:44:00
int x = 0.0不行是会损失资讯的转换需要explicit cast然后C#就有上面那个类似的功能啊,user-defined conversionstatic public implicit operator double(Angle value) {return value.rad; }

Links booklink

Contact Us: admin [ a t ] ucptt.com