代码搜索:Inheritance
找到约 1,689 项符合「Inheritance」的源代码
代码结果 1,689
www.eeworm.com/read/132541/14084873
java hasxy.java
package examples.inheritance;
/** An example Java subclass used to demonstrate
* inheritance concepts
*/
public class HasXY extends HasX {
private int y;
/** Method to set the ob
www.eeworm.com/read/132541/14084891
java vehicle.java
package examples.inheritance;
/** A class used to demonstrate inheritance concepts
*/
public class Vehicle {
private int wheels, range;
/** Class constructor
* @param w number
www.eeworm.com/read/132541/14084907
java bottom.java
package examples.inheritance;
/** A class used to demonstrate inheritance
* concepts
*/
public class Bottom extends Middle {
public Bottom() {
System.out.println( "Constructing a
www.eeworm.com/read/132541/14084912
java vehicletest.java
package examples.inheritance;
/** A class used to demonstrate inheritance concepts
*/
public class VehicleTest {
/** Test method for the class
* @param args Not used
*/
publ
www.eeworm.com/read/108874/15573333
htm ei44.htm
Effective C++, 2E | Item 44: Say what you mean; understand w
www.eeworm.com/read/108874/15573344
htm ei35.htm
Effective C++, 2E | Item 35: Make sure public inheritance mo
www.eeworm.com/read/101783/15817556
htm ei44.htm
Effective C++, 2E | Item 44: Say what you mean; understand w
www.eeworm.com/read/101783/15817567
htm ei35.htm
Effective C++, 2E | Item 35: Make sure public inheritance mo
www.eeworm.com/read/432289/8613519
cpp combined.cpp
//: C14:Combined.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Inheritance & composition
class A {
www.eeworm.com/read/285874/8806561
htm einherc.htm
Effective C++, 2E | Inheritance and Object-Oriented Design