接口如何知道调用哪个类方法? 这是正确的代码? <或者
namespace IntExample
{
interface Iinterface
{
void add();
void sub();
}
public partial class Form1 : Form,Iinterface
{
public Form1()
{
InitializeComponent();
}
public void add()
{
int a, b, c;
a = Convert.ToInt32(txtnum1.Text);
b = Convert.ToInt32(txtnum2.Text);
c = a + b;
txtresult.Text = c.ToString();
}
public void sub()
{
int a, b, c;
a = Convert.ToInt32(txtnum1.Text);
b = Convert.ToInt32(txtnum2.Text);
c = a - b;
txtresult.Text = c.ToString();
}
private void btnadd_Click(object sender, EventArgs e)
{
add();
}
private void button2_Click(object sender, EventArgs e)
{
sub();
}
class cl2 : Form1,Iinterface
{
public void add()
{
int a, b, c;
a = Convert.ToInt32(txtnum1.Text);
b = Convert.ToInt32(txtnum2.Text);
c = a + b;
txtresult.Text = c.ToString();
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
答案 0 :(得分:0)
接口不“知道”要调用的类方法。它只是定义可用的方法。
您发布的代码无法编译,因为cl2
没有实现sub
方法,但无论如何它都毫无意义。
我不知道你要做什么,所以我会举例说明接口的有效用法。
您可以使用多个表单来实现该界面,然后在主表单中,您可以根据索引或名称选择要显示哪些表单。
因此,要存储所有表单,您可以使用通用列表:
List<Iinterface> forms = new List<Iinterface>();
将实现界面的所有表单添加到列表中:
forms.Add(new Form1());
forms.Add(new Form2());
forms.Add(new Form3());
//...
然后,您可以显示特定表单并从界面调用方法:
//find by index:
forms[index].Show();
forms[index].add();
//find by name:
string name="form 2";
Iinterface form = forms.Find(f => f.Name == name);
if (form != null)
{
form.Show();
form.add();
}