代码搜索:polymorphism
找到约 740 项符合「polymorphism」的源代码
代码结果 740
www.eeworm.com/read/395876/8147267
java rodent10.java
// holding/Rodent10.java
// TIJ4 Chapter Holding, Exercise 10, page 409
/* Change Exercise 9 in the Polymorphism chapter to use an ArrayList to
* hold the Rodents and an Iterator to move through th
www.eeworm.com/read/395876/8148428
java rodent7.java
// interfaces/rodent/Rodent7.java
// TIJ4 Chapter Interfaces, Exercise 7, page 320
// Modify Exercise 9 in the Polymorphism chapter so that Rodent is an
// interface.
/* Solution includes, in same
www.eeworm.com/read/392244/8355463
java rodent10.java
// holding/Rodent10.java
// TIJ4 Chapter Holding, Exercise 10, page 409
/* Change Exercise 9 in the Polymorphism chapter to use an ArrayList to
* hold the Rodents and an Iterator to move through th
www.eeworm.com/read/392244/8356309
java rodent7.java
// interfaces/rodent/Rodent7.java
// TIJ4 Chapter Interfaces, Exercise 7, page 320
// Modify Exercise 9 in the Polymorphism chapter so that Rodent is an
// interface.
/* Solution includes, in same
www.eeworm.com/read/370596/9592601
java rodent10.java
// holding/Rodent10.java
// TIJ4 Chapter Holding, Exercise 10, page 409
/* Change Exercise 9 in the Polymorphism chapter to use an ArrayList to
* hold the Rodents and an Iterator to move through th
www.eeworm.com/read/370596/9593485
java rodent7.java
// interfaces/rodent/Rodent7.java
// TIJ4 Chapter Interfaces, Exercise 7, page 320
// Modify Exercise 9 in the Polymorphism chapter so that Rodent is an
// interface.
/* Solution includes, in same
www.eeworm.com/read/173217/9666605
cpp 615.cpp
//615.CPP demo polymorphism
#include
#include
const int MAXPERSON=10;
class Person
{
protected:
string name;
public:
Person()
{ name = "";}
Person(string
www.eeworm.com/read/414988/11087343
java rodent10.java
// holding/Rodent10.java
// TIJ4 Chapter Holding, Exercise 10, page 409
/* Change Exercise 9 in the Polymorphism chapter to use an ArrayList to
* hold the Rodents and an Iterator to move through th
www.eeworm.com/read/414988/11088147
java rodent7.java
// interfaces/rodent/Rodent7.java
// TIJ4 Chapter Interfaces, Exercise 7, page 320
// Modify Exercise 9 in the Polymorphism chapter so that Rodent is an
// interface.
/* Solution includes, in same
www.eeworm.com/read/202486/15381706
cpp ex1211b.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill 2000
// Example 12.11(b), page 284
// Polymorphism through virtual Functions
#include
using n