重载方法的调用
提问人:刘冬梅发布时间: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);
}
}
}
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>