代码搜索:shape
找到约 10,000 项符合「shape」的源代码
代码结果 10,000
www.eeworm.com/read/253434/12221702
h shape.h
/////////////////////////////////////////////////////////////
// Flash Plugin and Player
// Copyright (C) 1998,1999 Olivier Debon
//
// This program is free software; you can redistribute it and/or
/
www.eeworm.com/read/149542/12366889
frm shape.frm
VERSION 5.00
Begin VB.Form Form1
Caption = "Shape"
ClientHeight = 3510
ClientLeft = 60
ClientTop = 390
ClientWidth = 4680
ControlBox
www.eeworm.com/read/149542/12366890
vbp shape.vbp
Type=Exe
Form=shape.frm
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINNT\System32\stdole2.tlb#OLE Automation
IconForm="Form1"
Startup="Form1"
HelpFile=""
ExeName32="shape.exe"
www.eeworm.com/read/149542/12366896
exe shape.exe
www.eeworm.com/read/149423/12379811
cs shape.cs
using System;
using System.Drawing ;
namespace CsharpPats
{
///
/// Summary description for Shape.
///
public abstract class Shape {
protected int height, width;
www.eeworm.com/read/148709/12436021
cpp shape.cpp
//---------------------------------------------------------------------------
#include
#include
#pragma hdrstop
#include "Shape.h"
//--------------------------------------
www.eeworm.com/read/148709/12436025
h shape.h
//---------------------------------------------------------------------------
#ifndef ShapeH
#define ShapeH
//---------------------------------------------------------------------------
#include
www.eeworm.com/read/148709/12436027
dfm shape.dfm
www.eeworm.com/read/132098/14110562
java shape.java
// Shape.java
// 定义形状接口
public interface Shape {
public abstract double area();
public abstract double volume();
public abstract String getName();
}