代码搜索:Inheritance
找到约 1,689 项符合「Inheritance」的源代码
代码结果 1,689
www.eeworm.com/read/132541/14084866
java location2d.java
package examples.inheritance;
/** An example point in 2D space
*/
public class Location2D {
protected int x = 0, y = 0;
public Location2D( int initX, int initY ) {
x = initX;
www.eeworm.com/read/266116/11240015
cpp demo_1_review_repeated_inheritance_virtual_base_class_2.cpp
//*********************************************************
// 复杂继承的虚基类的构造函数的调用次序
//*********************************************************
#include
class Base1
www.eeworm.com/read/266116/11240031
cpp demo_1_review_repeated_inheritance_virtual_base_class_1.cpp
www.eeworm.com/read/432289/8613212
cpp overhead.cpp
//: C22:Overhead.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Virtual Base class overhead
#include
www.eeworm.com/read/432289/8613570
cpp privinh.cpp
//: C14:Privinh.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Private inheritance
class Base1 {
publ
www.eeworm.com/read/284998/8878091
cpp overhead.cpp
//: C06:Overhead.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Virtual base class overhead
#i
www.eeworm.com/read/281673/9142555
cpp overhead.cpp
//: C06:Overhead.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Virtual base class overhead
#i
www.eeworm.com/read/178378/9404547
cpp overhead.cpp
//: C22:Overhead.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Virtual Base class overhead
#include
www.eeworm.com/read/178378/9404823
cpp privinh.cpp
//: C14:Privinh.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Private inheritance
class Base1 {
publ
www.eeworm.com/read/355030/10299720
cpp overhead.cpp
//: C22:Overhead.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Virtual base class overhead
#i