代码搜索:Subclass
找到约 2,526 项符合「Subclass」的源代码
代码结果 2,526
www.eeworm.com/read/366576/9808217
c hidd.c
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2003-2008 Marcel Holtmann
*
*
* This program is free software; you can redistribute it and/or modif
www.eeworm.com/read/417019/11007060
js 4.03 - the extend function.js
/* Extend function. */
function extend(subClass, superClass) {
var F = function() {};
F.prototype = superClass.prototype;
subClass.prototype = new F();
subClass.prototype.constructor = subCla
www.eeworm.com/read/104147/7141204
txt example471super.txt
class superClass{
int x;
superClass( ){
x = 3;
System.out.println("in superClass : x = "+x);
}
void doSomething( ){
System.out.println("in superClass.doSomething( )");
}
www.eeworm.com/read/104147/7141214
java inheritance.java
class superClass{
int x;
superClass( ){
x = 3;
System.out.println("in superClass : x = "+x);
}
void doSomething( ){
System.out.println("in superClass.doSomething( )");
}
www.eeworm.com/read/242797/12984170
c main.c
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2003-2007 Marcel Holtmann
*
*
* This program is free software; you can redistribute it and/or modif
www.eeworm.com/read/139021/13194754
sgml 03-ct_file.sgml
CT_File
To let Session use a file as a container, you use
CT_Fole.
Instance variables
www.eeworm.com/read/151092/5686340
java myshapecontrollerfactory.java
// MyShapeControllerFactory.java
// MyShapeControllerFactory uses the Factory Method design
// pattern to create an appropriate instance of MyShapeController
// for the given MyShape subclass.
pa
www.eeworm.com/read/136865/5840456
readme
The box example
This example program shows how to use OpenGL in Qt: Put your OpenGL
code in a class inherited from QGLWidget. The resulting subclass may
be used like any other Qt widget, with signal