代码搜索:Generics

找到约 1,477 项符合「Generics」的源代码

代码结果 1,477
www.eeworm.com/read/434781/7801843

java ex34.java

// generics/Ex34.java // TIJ4 Chapter Generics, Exercise 34, page 709 /* Create a self-bounded generic type that contains an abstract method * that takes an argument of the generic type parameter a
www.eeworm.com/read/434781/7801851

java dynamicproxymixin39.java

// generics/DynamicProxyMixin39.java // TIJ4 Chapter Generics, Exercise 39, page 721 // Add a new mixin class Colored to DynamicProxyMixin.java, mix it into mixin and // show that it works. impor
www.eeworm.com/read/434781/7801852

java genericsequence.java

// generics/GenericSequence.java // TIJ4 Chapter Generics, Exercise 4, page 624 // 'Generify' innerclasses/Sequence.java. import java.util.*; interface Selector { boolean end(); Object curre
www.eeworm.com/read/333003/12711537

java tupletest15.java

// generics/TupleTest15.java // TIJ4 Chapter Generics, Exercise 15, page 641 /* ... if you were to try to capture the result of f2() into a * paramterized TwoTuple, the compiler would issue a warn
www.eeworm.com/read/333003/12711541

java holderex2.java

// generics/HolderEx2.java // TIJ4 Chapter Generics, Exercise 2, page 621 /* Create a holder class that holds three objects of the same type along * with the methods to store and fetch those objec
www.eeworm.com/read/333003/12711577

java classtypecapture21.java

// generics/ClassTypeCapture21.java // TIJ4 Chapter Generics, Exercise 21, page 663 /* Modify ClassTypeCapture.java by adding a Map
www.eeworm.com/read/333003/12711621

java ex34.java

// generics/Ex34.java // TIJ4 Chapter Generics, Exercise 34, page 709 /* Create a self-bounded generic type that contains an abstract method * that takes an argument of the generic type parameter a
www.eeworm.com/read/333003/12711647

java dynamicproxymixin39.java

// generics/DynamicProxyMixin39.java // TIJ4 Chapter Generics, Exercise 39, page 721 // Add a new mixin class Colored to DynamicProxyMixin.java, mix it into mixin and // show that it works. impor
www.eeworm.com/read/333003/12711650

java genericsequence.java

// generics/GenericSequence.java // TIJ4 Chapter Generics, Exercise 4, page 624 // 'Generify' innerclasses/Sequence.java. import java.util.*; interface Selector { boolean end(); Object curre
www.eeworm.com/read/325023/13232407

java decoration.java

//: generics/decorator/Decoration.java package generics.decorator; import java.util.*; class Basic { private String value; public void set(String val) { value = val; } public String get(