代码搜索:Inheritance
找到约 1,689 项符合「Inheritance」的源代码
代码结果 1,689
www.eeworm.com/read/172725/5382791
java inheritance.java
package org.apache.torque.engine.database.model;
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apach
www.eeworm.com/read/168845/5432198
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)
#ifnde
www.eeworm.com/read/168845/5435389
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)
#inclu
www.eeworm.com/read/333835/3381637
test inheritance.test
ACL inheritance test. Run these tests on a filesystem with ACL support.
$ id -u
> 0
$ mkdir d
$ setfacl -d -m group:bin:r-x d
$ getfacl d
> # file: d
> # owner: root
www.eeworm.com/read/325619/3481869
sln inheritance.sln
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{20D4826A-C6FA-45DB-90F4-C717570B9F32}") = "WeatherStation", "WeatherStation.csdproj", "{2EE7EC87-06FB-4BB9-B029-20CF28036387}"
P
www.eeworm.com/read/447901/1693142
test inheritance.test
ACL inheritance test. Run these tests on a filesystem with ACL support.
$ id -u
> 0
$ mkdir d
$ setfacl -d -m group:bin:r-x d
$ getfacl d
> # file: d
> # owner: root
www.eeworm.com/read/432926/1886100
pde inheritance.pde
/**
* Inheritance
*
* A class can be defined using another class as a foundation. In object-oriented
* programming terminology, one class can inherit fi elds and methods from another.
* An obje
www.eeworm.com/read/420998/2058240
idl inheritance.idl
interface ComponentImplDef;
interface Contained;
interface Container;
interface Contained {
Container defined_in ();
};
interface Container : Contained {
};
interface ComponentImplDef : Contai
www.eeworm.com/read/420998/2058315
idl inheritance.idl
interface Base {
void op1();
};
interface Derived : Base {
void op2();
};