代码搜索:Inheritance

找到约 1,689 项符合「Inheritance」的源代码

代码结果 1,689
www.eeworm.com/read/340665/3276426

c conversion6.c

// PRMS Id: g++/6034 extern "C" int printf (const char *, ...); class Base { char x; }; template // remove the public Base inheritance and the problem goes away... class Container : publ
www.eeworm.com/read/306677/3735091

cpp factory.cpp

/* factory.cpp Remote object factory The remote object factory uses a lease-based system. Remote objects are purged from the pool when the lease expires. Supports inheritance. Compile: soapcpp
www.eeworm.com/read/288961/3997400

java interfaceinheritancetest.java

package org.codehaus.xfire.aegis.inheritance.intf; import org.codehaus.xfire.aegis.AbstractXFireAegisTest; import org.codehaus.xfire.client.XFireProxyFactory; import org.codehaus.xfire.service.Se
www.eeworm.com/read/440906/1775520

c friend1.c

// Build don't link: // f() should be able to access B::j, as of FDIS [class.protected]/1 // Subject: Re: [bug] Inheritance and friend access control broken // References:
www.eeworm.com/read/440906/1777816

c destruct3.c

// Special g++ Options: -w // PRMS Id: 4342 (second testcase) // Bug: g++ still can't deal with ambiguous inheritance in destructor calls. // Build don't link: struct ccUnwind { ccUnwind ();
www.eeworm.com/read/440906/1778058

c conversion6.c

// PRMS Id: g++/6034 extern "C" int printf (const char *, ...); class Base { char x; }; template // remove the public Base inheritance and the problem goes away... class Container : publ
www.eeworm.com/read/376006/2718197

sql inherit.sql

-- -- 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); INSERT INTO a(aa)
www.eeworm.com/read/366702/2869505

c friend1.c

// { dg-do assemble } // f() should be able to access B::j, as of FDIS [class.protected]/1 // Subject: Re: [bug] Inheritance and friend access control broken // References:
www.eeworm.com/read/366702/2871787

c destruct3.c

// { dg-do assemble } // { dg-options "-w" } // PRMS Id: 4342 (second testcase) // Bug: g++ still can't deal with ambiguous inheritance in destructor calls. struct ccUnwind { ccUnwind (); v
www.eeworm.com/read/395876/8147453

java fibonacci7.java

// generics/Fibonacci7.java // TIJ4 Chapter Generics, Exercise 7, page 631 // Use composition instead of inheritance to adapt Fibonacci // to make it interable. import net.mindview.util.*; import