代码搜索:Inheritance
找到约 1,689 项符合「Inheritance」的源代码
代码结果 1,689
www.eeworm.com/read/405478/2291390
java parent.java
//$Id: $
package org.hibernate.test.annotations.inheritance.joined;
import java.util.HashSet;
import java.util.Set;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
impor
www.eeworm.com/read/376006/2718053
out inherit.out
--
-- Test inheritance features
--
CREATE TABLE a (aa TEXT);
CREATE TABLE b (bb TEXT) INHERITS (a);
CREATE TABLE c (cc TEXT) INHERITS (a);
CREATE TABLE d (dd TEXT) INHERITS (b,c,a);
NOTICE: merging m
www.eeworm.com/read/108874/15572946
htm ei34.htm
Effective C++, 2E | Item 34: Minimize compilation dependencies between files Back to Item 33: Use inlining judiciously.
Continue to Inheritance and Object-Oriented Design
Item 34: Minimize compilatio
www.eeworm.com/read/101783/15817169
htm ei34.htm
Effective C++, 2E | Item 34: Minimize compilation dependencies between files Back to Item 33: Use inlining judiciously.
Continue to Inheritance and Object-Oriented Design
Item 34: Minimize compilatio
www.eeworm.com/read/192096/8405903
htm ch13_13.htm
Recipe 13.12. Solving the Data Inheritance Problem (Perl Cookbook)
www.eeworm.com/read/285874/8806248
htm ei39.htm
Effective C++, 2E | Item 39: Avoid casts down the inheritance hierarchy Back to Item 38: Never redefine an inherited default parameter value.
Continue to Item 40: Model "has-a" or "is-implemented-in-
www.eeworm.com/read/285874/8806331
htm ei40.htm
Effective C++, 2E | Item 40: Model "has-a" or "is-implemented-in-terms-of" through layering Back to Item 39: Avoid casts down the inheritance hierarchy.
Continue to Item 41: Differentiate between inh
www.eeworm.com/read/373369/9460459
java bigegg2.java
//: innerclasses/BigEgg2.java
// Proper inheritance of an inner class.
import static net.mindview.util.Print.*;
class Egg2 {
protected class Yolk {
public Yolk() { print("Egg2.Yolk()"); }
www.eeworm.com/read/169058/9883157
java bigegg2.java
//: innerclasses/BigEgg2.java
// Proper inheritance of an inner class.
import static net.mindview.util.Print.*;
class Egg2 {
protected class Yolk {
public Yolk() { print("Egg2.Yolk()"); }
www.eeworm.com/read/161772/10376083
cpp employee.cpp
// Inheritance illustrated
#include
#include
#define MAX_LEN 81
class person {
protected:
char fname[MAX_LEN];
char lname[MAX_LEN];
int age;
public: