是否有可能使一个参数,实现两个接口? [英] Is it possible to make a parameter implement two interfaces?

查看:162
本文介绍了是否有可能使一个参数,实现两个接口?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有可能定义一个函数,它在必须实现两个接口的参数?

(这两个接口是那些我只记得从我的头顶,而不是那些我想要使用)

 私人无效DoSomthing(IComparable的,ICollection的输入)
{

}
 

解决方案

您可以:

1)定义一个接口,它继承了所需的接口:

  public接口ICombinedInterface:IComparable的,ICollection的{...}

私人无效的doSomething(ICombinedInterface输入){...}
 

2)使用泛型:

 私人无效的DoSomething< T>(T输入)
    其中T:IComparable的,ICollection的
{...}
 

Is it possible to define a function that takes in a parameter that must implement two interfaces?

(The two interfaces are ones I just remembered off the top of my head; not the ones I want to use)

private void DoSomthing(IComparable, ICollection input)
{

}

解决方案

You can:

1) Define an interface that inherits both required interfaces:

public interface ICombinedInterface : IComparable, ICollection {... }

private void DoSomething(ICombinedInterface input) {... }

2) Use generics:

private void DoSomething<T>(T input)
    where T : IComparable, ICollection
{...}

这篇关于是否有可能使一个参数,实现两个接口?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆