代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/370596/9593526
java itest.java
// object/ITest.java
// TIJ4 Chapter Object, Exercise 7, page 90
// Turn the Incrementable code fragments into a working program.
class StaticTest {
static int i = 47;
}
class Incrementable {
www.eeworm.com/read/414988/11087299
java queue27.java
// holding/Queue27.java
// TIJ4 Chapter Holding, Exercise 27, page 424
/* Write a class called Command that contains a String and has a method operation()
* that displays the String. Write a second
www.eeworm.com/read/414988/11087346
java ex12.java
// holding/Ex12.java
// TIJ4 Chapter Holding, Exercise 12, page 410
/* Create and populate a List. Create a second List of the
* same size as the first, and use ListIterator to re
www.eeworm.com/read/414988/11087359
java ex12a.java
// holding/Ex12a.java
// TIJ4 Chapter Holding, Exercise 12, page 410
/* Create and populate a List. Create a second List of the
* same size as the first, and use ListIterator to r
www.eeworm.com/read/414988/11087405
java ifelsetest.java
// control/IfEsleTest.java
// TIJ4 Chapter Control, Exercise 6, page 144
/* Modify the two test() methods in the previous two programs so that they take
* two extra arguments begin and end, and so
www.eeworm.com/read/414988/11087428
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/414988/11087430
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/414988/11087448
java classtypecapture21.java
// generics/ClassTypeCapture21.java
// TIJ4 Chapter Generics, Exercise 21, page 663
/* Modify ClassTypeCapture.java by adding a Map
www.eeworm.com/read/414988/11087468
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/414988/11087486
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