代码搜索:Exercise

找到约 10,000 项符合「Exercise」的源代码

代码结果 10,000
www.eeworm.com/read/395876/8147906

java accesstest.java

// access/AccessTest.java // TIJ4 Chapter Access, Exercise 5, page 227 /* Create a class with public, private, protected and package-access fields and * method members. Create an object of this cl
www.eeworm.com/read/395876/8147937

java loadclass.java

// reusing/LoadClass.java // TIJ4 Chapter Reusing, Exercise 23, page 274 /* Prove that class loading takes place only once. Prove that loading may be caused * by either the creation of the first in
www.eeworm.com/read/395876/8148008

java cartoon2.java

// reusing/Cartoon2.java // TIJ4 Chapter Reusing, Exercise 3, page 245 /* Prove the previous sentence. (Even if you don't create a constructor for * Cartoon(), the compiler will synthesize a defau
www.eeworm.com/read/395876/8148161

java horrorshow14.java

// innerclasses/HorrorShow14.java // TIJ4 Chapter Innerclasses, Exercise 14, page361 /* Modify interfaces/HorrorShow.java to implement DangerousMonster and * Vampire using anonymous classes. */ i
www.eeworm.com/read/395876/8148186

java ex5(2).java

// strings/Ex5.java // TIJ4 Chapter Strings, Exercise 5, page 521 /* For each of the basic conversion types in the above table, write the * most complex formatting expression possible. That is, us
www.eeworm.com/read/395876/8148194

java sentence7.java

// strings/Sentence7.java // TIJ4 Chapter Strings, Exercise 7, page 527 /* Using the documentation for java.util.regex.Pattern as a resource, * write and test a regular expression that checks a sen
www.eeworm.com/read/395876/8148238

java scanner20.java

// strings/Scanner20.java // TIJ4 Chapter Strings, Exercise 20, page 549 /* Create a class that contains int, long, float and double and String fields. * Create a constructor for this class that ta
www.eeworm.com/read/395876/8148413

java ex17.java

// interfaces/Ex17.java // TIJ4 Chapter Interfaces, Exercise 17, page 335 // Prove that the fields in an interface are implicitly static and final. interface Days { int SUNDAY = 1, MONDAY = 2,
www.eeworm.com/read/395876/8148473

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/295361/8168208

c krx80800.c

/* bfree(): Exercise from K&R 8-8; Ads an arbitrary block into the free * ** list maintained by malloc() and free() as written by K&R in chapter 8* ** Messages the block to a format acceptable to th