代码搜索:Subclass
找到约 2,526 项符合「Subclass」的源代码
代码结果 2,526
www.eeworm.com/read/199568/7844466
java polymorphismtest.java
// Fig. 10.1: PolymorphismTest.java
// Assigning superclass and subclass references to superclass and
// subclass variables.
public class PolymorphismTest
{
public static void main( String
www.eeworm.com/read/141570/12999064
txt 48.txt
屏蔽TextBox的系统菜单
TextBox是最常用的控件之一,很多时候我们需要处理在其上的右键处理.而系统默认有右键菜单, 因此很多时候影响程序的美观.其实,我们可以将系统的右键菜单屏蔽掉.屏蔽TextBox右键菜单的 方法有很多,下面主要介绍常用的两种方法:
方法一:投机取巧法;
本方法实现起来十分简单,在某些场合下使用起来很方便;不足是有些场合下不适用.
>>步骤1- ...
www.eeworm.com/read/317432/13504783
pas classes.pas
{ PCI Classes }
type pci_record =
record
class,
subclass,
progif : byte;
name : string[40];
end;
const
pci_class_names : array [0..$11] of string[4
www.eeworm.com/read/145188/5747189
java childbean.java
//声明本类定义在包examples.ejb.subclass中
package examples.ejb.subclass;
/**
* ChildBean是一个无状态会话Bean:
* 继承ParentBean的方法
* 重载ParentBean的方法
*
*/
public class ChildBean extends ParentBean {
/*
www.eeworm.com/read/106760/6191146
java basesessionbean.java
/*
* Core - Library of useful classes that are used in many CyberDemia projects.
* Copyright (C) 2004 CyberDemia Research and Services
*
* This library is free software; you can redistribute it an
www.eeworm.com/read/106760/6191147
java baseentitybean.java
/*
* Core - Library of useful classes that are used in many CyberDemia projects.
* Copyright (C) 2004 CyberDemia Research and Services
*
* This library is free software; you can redistribute it an
www.eeworm.com/read/486192/6537964
cpp classify_util.cpp
#include "clust_defs.h"
#include "alloc_util.h"
#include "classify_util.h"
void ClassLogLikelihood(
double *vector,
double *ll, /* log likelihood, ll[class] */
SigSet *S /* class si
www.eeworm.com/read/151211/12227401
txt 48.txt
屏蔽TextBox的系统菜单
TextBox是最常用的控件之一,很多时候我们需要处理在其上的右键处理.而系统默认有右键菜单, 因此很多时候影响程序的美观.其实,我们可以将系统的右键菜单屏蔽掉.屏蔽TextBox右键菜单的 方法有很多,下面主要介绍常用的两种方法:
方法一:投机取巧法;
本方法实现起来十分简单,在某些场合下使用起来很方便;不足是有些场合下不适用.
>>步骤1- ...
www.eeworm.com/read/122349/14699074
h iterator_adaptor.h
// -*- c++ -*-
//
// Copyright 1997, 1998, 1999 University of Notre Dame.
// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee
//
// This file is part of the Matrix Template Library
//
// You sh