代码搜索:Inheritance
找到约 1,689 项符合「Inheritance」的源代码
代码结果 1,689
www.eeworm.com/read/337096/12392123
h tabtenn1.h
// tabtenn1.h -- simple inheritance
#ifndef TABTENN1_H_
#define TABTENN1_H_
// simple base class
class TableTennisPlayer
{
private:
enum {LIM = 20};
char firstname[LIM];
char las
www.eeworm.com/read/225725/14521725
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/123658/14618789
c search.c
/* Breadth-first and depth-first routines for
searching multiple-inheritance lattice for GNU C++.
Copyright (C) 1987, 89, 92, 93, 94, 1995 Free Software Foundation, Inc.
Contributed by Michae
www.eeworm.com/read/214878/15085302
h queue.h
#ifndef QUEUE_H_
#define QUEUE_H_
#include "list.h"
#include "StartConv.h"
template
class queue : list // Private inheritance
{
public:
int size( ) const
{ re
www.eeworm.com/read/214878/15085315
h stack.h
#ifndef STACK_H_
#define STACK_H_
#include "list.h"
#include "StartConv.h"
template
class stack : list // Private inheritance
{
public:
int size( ) const
{ r
www.eeworm.com/read/187386/5223853
java roadvehicle.java
package examples.entity.joined;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.Inher
www.eeworm.com/read/183001/5260287
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/291217/3967932
java roadvehicle.java
package examples.entity.joined;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.Inher
www.eeworm.com/read/288961/3997384
java contentbean1.java
package org.codehaus.xfire.aegis.inheritance.ws2.common.pack1;
/**
*
*
* @author xfournet
*/
public class ContentBean1
{
private String m_data1;
public ContentBean1()
www.eeworm.com/read/414813/2142123
am makefile.am
SUBDIRS =
EXTRA_DIST =
# NOTES:
# Root.h is needed by Quadtree.h for inlines
# NodeBase.h is needed by Root.h for inheritance
geosdir = $(includedir)/geos/index/quadtree
geos_HEADERS = \
NodeBa