最佳答案
假设我有一个协议:
public protocol Printable {
typealias T
func Print(val:T)
}
这就是实现方法
class Printer<T> : Printable {
func Print(val: T) {
println(val)
}
}
我的期望是,我必须能够使用 Printable
变量来打印这样的值:
let p:Printable = Printer<Int>()
p.Print(67)
编译器抱怨这个错误:
”协议‘ Printable’只能用作通用约束,因为 本身或有关连的类型规定」
我是不是做错了什么? 不管怎样,要解决这个问题?
**EDIT :** Adding similar code that works in C#
public interface IPrintable<T>
{
void Print(T val);
}
public class Printer<T> : IPrintable<T>
{
public void Print(T val)
{
Console.WriteLine(val);
}
}
//.... inside Main
.....
IPrintable<int> p = new Printer<int>();
p.Print(67)
编辑2: 我想要的真实世界的例子。请注意,这不会编译,但会显示我想要实现的目标。
protocol Printable
{
func Print()
}
protocol CollectionType<T where T:Printable> : SequenceType
{
.....
/// here goes implementation
.....
}
public class Collection<T where T:Printable> : CollectionType<T>
{
......
}
let col:CollectionType<Int> = SomeFunctiionThatReturnsIntCollection()
for item in col {
item.Print()
}