为什么这个方法接受字节,当它的参数是双精度?
Why is this method accepting byte, when it's parameter is double?
首先,我想说这只是一个简单的代码,它是一个例子,我正在准备考试。
public class TOblik
{
public int povrsina = 0;
public TVrsta vrsta = 0;
public TOblik(TVrsta a)
{
}
}
public enum TVrsta
{
Kvadrat,
Krug
}
public class A
{
public static double Dodaj(TOblik o, TVrsta v, double r = 0)
{
if (v == TVrsta.Kvadrat)
{
return o.povrsina + r * r;
}
else
{
o.vrsta = v;
return o.povrsina;
}
}
static void Main(string[] args)
{
TOblik oblik = new TOblik(TVrsta.Kvadrat);
double vrednost = 10;
byte broj = 5;
TVrsta vrsta = TVrsta.Krug;
Dodaj(oblik, vrsta, broj);
Console.WriteLine();
Console.ReadLine();
}
}
我不明白为什么这段代码有效。方法Dodaj最后一个参数是double,但是我转发broj的时候是accepting的(是byte类型的)
C# 有隐式转换:某些 类型的数据可以转换 为other 类型而不提及转换(显式 转换也存在,例如 byte a = (byte) b;
)。通常只有当“target 类型”更通用时才能进行隐式转换,因此可以处理 source 的 all 值类型。
如您在 documentation 中所读:
The following table shows the predefined implicit numeric conversions.
Implicit conversions might occur in many situations, including method
invoking and assignment statements.
(...)
From To
------------------------------------------------------------------------
... ...
byte short, ushort, int, uint, long, ulong, float, double, or decimal
... ...
文档还警告说,从 int
到 float
的转换可能会导致 精度损失 。因此,人们总是必须对这些有点小心。
您可以看到这种转换发生在 csharp
交互式 shell:
csharp> byte a = 10;
csharp> double b = a;
csharp> b
10
首先,我想说这只是一个简单的代码,它是一个例子,我正在准备考试。
public class TOblik
{
public int povrsina = 0;
public TVrsta vrsta = 0;
public TOblik(TVrsta a)
{
}
}
public enum TVrsta
{
Kvadrat,
Krug
}
public class A
{
public static double Dodaj(TOblik o, TVrsta v, double r = 0)
{
if (v == TVrsta.Kvadrat)
{
return o.povrsina + r * r;
}
else
{
o.vrsta = v;
return o.povrsina;
}
}
static void Main(string[] args)
{
TOblik oblik = new TOblik(TVrsta.Kvadrat);
double vrednost = 10;
byte broj = 5;
TVrsta vrsta = TVrsta.Krug;
Dodaj(oblik, vrsta, broj);
Console.WriteLine();
Console.ReadLine();
}
}
我不明白为什么这段代码有效。方法Dodaj最后一个参数是double,但是我转发broj的时候是accepting的(是byte类型的)
C# 有隐式转换:某些 类型的数据可以转换 为other 类型而不提及转换(显式 转换也存在,例如 byte a = (byte) b;
)。通常只有当“target 类型”更通用时才能进行隐式转换,因此可以处理 source 的 all 值类型。
如您在 documentation 中所读:
The following table shows the predefined implicit numeric conversions. Implicit conversions might occur in many situations, including method invoking and assignment statements.
(...)
From To ------------------------------------------------------------------------ ... ... byte short, ushort, int, uint, long, ulong, float, double, or decimal ... ...
文档还警告说,从 int
到 float
的转换可能会导致 精度损失 。因此,人们总是必须对这些有点小心。
您可以看到这种转换发生在 csharp
交互式 shell:
csharp> byte a = 10;
csharp> double b = a;
csharp> b
10