代码搜索:Subclass
找到约 2,526 项符合「Subclass」的源代码
代码结果 2,526
www.eeworm.com/read/139182/5807252
cxx dprecord.cxx
#include "DPRecord.hxx"
#include
/* This implements 'Dial Plan' subclass of the
* 'Record' superclass.
*
* DPRecord.cxx version 1.0 -- 19 Mar 2003
*
www.eeworm.com/read/139182/5807263
cxx cfbrecord.cxx
#include "CFBRecord.hxx"
#include
/* This implements 'CallForward on Busy' subclass of
* the 'Record' superclass.
*
* CFBRecord.cxx version 1.0 -- 18 Mar 2003
www.eeworm.com/read/139182/5807264
cxx cfnarecord.cxx
#include "CFNARecord.hxx"
#include
/* This implements 'CallForward on No Answer' subclass of
* the 'Record' superclass.
*
* CallFNARecord.cxx version 1.0 -- 18 Mar 2
www.eeworm.com/read/138591/5815398
java extendedoperation.java
// Subclass of extensible, serializable typesafe enum - Page 112
import java.io.*;
abstract class ExtendedOperation extends Operation {
ExtendedOperation(String name) { super(name); }
www.eeworm.com/read/136828/5845378
java regsingletonchild.java
package com.javapatterns.singleton.demos;
/**
* This class is a subclass of RegSingleton
*/
import java.util.HashMap;
public class RegSingletonChild extends RegSingleton
{
public Re
www.eeworm.com/read/125439/6029357
java regsingletonchild.java
package com.javapatterns.singleton.demos;
/**
* This class is a subclass of RegSingleton
*/
import java.util.HashMap;
public class RegSingletonChild extends RegSingleton
{
public Re
www.eeworm.com/read/116971/6112124
java extendedoperation.java
// Subclass of extensible, serializable typesafe enum - Page 112
import java.io.*;
abstract class ExtendedOperation extends Operation {
ExtendedOperation(String name) { super(name); }
www.eeworm.com/read/116971/6112129
java abstractfoo.java
// Nonserializable stateful class allowing serializable subclass
public abstract class AbstractFoo {
private int x, y; // The state
private boolean initialized = false;
public Abstra
www.eeworm.com/read/116971/6112130
java foo.java
// Serializable subclass of nonserializable stateful class
import java.io.*;
public class Foo extends AbstractFoo implements Serializable {
private void readObject(ObjectInputStream s)
www.eeworm.com/read/112742/6144010
java extendedoperation.java
// Subclass of extensible, serializable typesafe enum - Page 112
import java.io.*;
abstract class ExtendedOperation extends Operation {
ExtendedOperation(String name) { super(name); }