代码搜索:Inheritance

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

代码结果 1,689
www.eeworm.com/read/135759/5878256

java~19~ inheritance.java~19~

// 例 5-20 子类 中访问 父类 的同名方法。 package Inheritance; class A{ int i,j; A(int i,int j){ this.i=i; this.j=j; } int multiply(){ return i*j; } } class B extends A{ i
www.eeworm.com/read/135759/5878257

java~17~ inheritance.java~17~

// 例 5-20 子类 中访问 父类 的同名方法。 package Inheritance; class A{ int i,j; A(int i,int j){ this.i=i; this.j=j; } int multiply(){ return i*j; } } class B extends A{ i
www.eeworm.com/read/110109/6165736

java inheritance1.java

/* * This example demonstrates the Oracle 9i inheritance feature. It * demonstrates the access of subtype objects by using Oracle * ORAData customized mapping. * * This example creates the objec
www.eeworm.com/read/110109/6165741

java inheritance3.java

/* * This example demonstrates the Oracle 9i inheritance feature. It * demonstrates the access of subtype objects by using JDBC default * mapping. * * This example creates the object types hiera
www.eeworm.com/read/110109/6165748

java inheritance2.java

/* * This example demonstrates the Oracle 9i inheritance feature. It * demonstrates the access of subtype objects by using SQLData * customized mapping. * * This example creates the object type
www.eeworm.com/read/408881/11366331

java inheritance1.java

/* * This example demonstrates the Oracle 9i inheritance feature. It * demonstrates the access of subtype objects by using Oracle * ORAData customized mapping. * * This example creates the objec
www.eeworm.com/read/408881/11366336

java inheritance3.java

/* * This example demonstrates the Oracle 9i inheritance feature. It * demonstrates the access of subtype objects by using JDBC default * mapping. * * This example creates the object types hiera
www.eeworm.com/read/408881/11366341

java inheritance2.java

/* * This example demonstrates the Oracle 9i inheritance feature. It * demonstrates the access of subtype objects by using SQLData * customized mapping. * * This example creates the object type
www.eeworm.com/read/251577/12334854

hpp inheritance_disambiguator.hpp

/* ///////////////////////////////////////////////////////////////////////// * File: stlsoft/obsolete/inheritance_disambiguator.hpp (formerly stlsoft_inheritance_disambiguator.h) * * Purp