代码搜索:Polymorphism
找到约 740 项符合「Polymorphism」的源代码
代码结果 740
www.eeworm.com/read/228954/4761730
cs pointcircletest.cs
// Fig. 7.3: PointCircleTest.cs
// Demonstrating inheritance and polymorphism.
using System;
using System.Windows.Forms;
namespace PointCircle
{
// PointCircleTest class definition
cl
www.eeworm.com/read/363445/9951311
as sampletypecheck.as
package org.kingda.book.basicoop.polymorphism
{
import flash.display.Sprite;
public class SampleTypeCheck extends Sprite
{
public function SampleTypeCheck() {
var a:Number = 123;
va
www.eeworm.com/read/357852/10200143
cpp tstack.cpp
// Filename: tstack.cpp
//template stack implementation: parametric polymorphism
// Allows the same code to be used with different types.
#include
using namespace std;
template
www.eeworm.com/read/349709/10802892
sql dynamicdispatch.sql
/*
* DynamicDispatch.sql
* Chapter 14, Oracle10g PL/SQL Programming
* by Ron Hardman, Mike McLaughlin, Scott Urman
*
* This script demonstrates dynamic dispatch/dynamic polymorphism
*/
www.eeworm.com/read/464569/7064995
java chapter13n2.java
/**
* demonstration of Polymorphism
*/
public class Chapter13n2
{
public static void main(String[] args)
{
Reservation[] collection = new Reservation[4] ;
BasicReservation br = new Bas
www.eeworm.com/read/155858/11843145
cpp 4elist0508.cpp
// Listing 5.8 - demonstrates
// function polymorphism
#include
int Double(int);
long Double(long);
float Double(float);
double Double(double);
using namespace std;
int main
www.eeworm.com/read/490333/1200029
cs interfacestest.cs
// Fig. 10.18: InterfacesTest.cs
// Demonstrating polymorphism with interfaces.
using System.Windows.Forms;
public class InterfacesTest
{
public static void Main( string[] args )
{
www.eeworm.com/read/228954/4761752
cs interfacestest.cs
// Fig. 7.18: InterfacesTest.cs
// Demonstrating polymorphism with interfaces.
using System.Windows.Forms;
public class InterfacesTest
{
public static void Main( string[] args )
{