代码搜索:Inheritance
找到约 1,689 项符合「Inheritance」的源代码
代码结果 1,689
www.eeworm.com/read/416830/2107479
idl inheritance.idl
interface ComponentImplDef;
interface Contained;
interface Container;
interface Contained {
Container defined_in ();
};
interface Container : Contained {
};
interface ComponentImplDef : Contai
www.eeworm.com/read/416830/2107554
idl inheritance.idl
interface Base {
void op1();
};
interface Derived : Base {
void op2();
};
www.eeworm.com/read/375190/2730263
hpp inheritance.hpp
// Copyright David Abrahams 2002.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef IN
www.eeworm.com/read/375190/2737956
cpp inheritance.cpp
// Copyright David Abrahams 2002.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include
www.eeworm.com/read/358237/2993115
java inheritance.java
/*
* Copyright (c) 1998-2008 Caucho Technology -- all rights reserved
*
* This file is part of Resin(R) Open Source
*
* Each copy or derived work must preserve the copyright notice and this
* no
www.eeworm.com/read/366897/9793829
cpp inheritance.cpp
//: C14:Inheritance.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Simple inheritance
#include
www.eeworm.com/read/415545/11063448