代码搜索:Subclass
找到约 2,526 项符合「Subclass」的源代码
代码结果 2,526
www.eeworm.com/read/459924/7262698
h fann_cpp_subclass.h
#ifndef FANN_CPP_SUBCLASS_H_INCLUDED
#define FANN_CPP_SUBCLASS_H_INCLUDED
#include
#include
#include
#include
/* Namespace: FANN
The FANN nam
www.eeworm.com/read/100127/6274030
py subclass-existing-widgets.py
from Tkinter import *
# This is a program that makes a simple two button application
class New_Button(Button):
def callback(self):
print self.counter
self.counter = self.counter + 1
def
www.eeworm.com/read/221464/4831760
cpp submod_subclass_api.cpp
// Copyright David Hawkes 2002.
// Permission is hereby granted to copy, use and modify this software
// for any purpose, including commercial distribution, provided this
// copyright notice is not
www.eeworm.com/read/305290/3775357
svn-base subclass.h.svn-base
//-----------------------------------------------------------------------//
// This is a part of the GuiLib MFC Extention. //
// Modified : Francisco Campos //
// (C) 2002 Fran
www.eeworm.com/read/305290/3775400
svn-base subclass.cpp.svn-base
//-----------------------------------------------------------------------//
// This is a part of the GuiLib MFC Extention. //
// Modified by : Francisco Campos //
// (C) 2002 F
www.eeworm.com/read/438717/1823291
py subclass-existing-widgets.py
from Tkinter import *
# This is a program that makes a simple two button application
class New_Button(Button):
def callback(self):
print self.counter
self.counter = self.counter + 1
def
www.eeworm.com/read/109930/15545250
zip how to subclass a usercontrol.zip
www.eeworm.com/read/275831/10794316
rb 12 - simulating a subclass of fixnum.rb
require 'delegate'
class HexNumber < DelegateClass(Fixnum)
# The string representations of this class are hexadecimal numbers.
def to_s
sign = self < 0 ? "-" : ""
hex = abs.to_s(16)
"#
www.eeworm.com/read/138887/13205821
txt hibernate2 参考文档之十六.txt
Chapter 16. 继承映射(Inheritance Mappings)
16.1. 三种策略
Hibernate支持三种不同的基本继承映射策略。
每棵类继承树使用一个表(table per class hierarchy)
每个子类一个表(table per subclass)
每个具体类一个表(table per concrete class)(有一些限制)