私がプロトコルを持っているとしましょう:
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'は、Selfまたは関連する型の要件があるため、ジェネリック制約としてのみ使用できます」
私は何か間違ったことをしていますか?とにかくこれを修正するには?
**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()
}