重載方法的調用
提問人:劉冬梅發(fā)布時間:2020-10-13
using system;
namespace TestAdd
{
public class TestAdd
{
public int Add(int a,int b) {return a+b;}
public double Add(double a,double b) {return a+b;}
public int Add(string a,string b)
{return Convert.ToInt32(a)+ Convert.ToInt32(b);}
}
class Test
{
public static void Main( )
{
TestAdd t=new TestAdd( );
t.Add(1,2);
t.Add(2.0,3.0);
t.Add(“3”, “4”);
t.Add(2,3.0);
t.Add(“2”,3.0);
}
}
}
繼續(xù)查找其他問題的答案?
相關視頻回答
點擊加載更多評論>>