代码搜索:shape
找到约 10,000 项符合「shape」的源代码
代码结果 10,000
www.eeworm.com/read/233755/14139849
vb shape.vb
Imports System.Drawing.Drawing2D
Public Class Shape
Inherits System.Windows.Forms.UserControl
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
www.eeworm.com/read/233206/14163172
cpp shape.cpp
// Shape.cpp: implementation of the shape classes.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include
#include "Shape.h"
#define
www.eeworm.com/read/233206/14163195
h shape.h
// Shape.h: interface for the CShape class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SHAPE_H__35A41A4E_36EA_11D4_85B6_3ED14D000000__INCLUDED_)
#
www.eeworm.com/read/233206/14163217
obj shape.obj
www.eeworm.com/read/233206/14163218
exe shape.exe
www.eeworm.com/read/233206/14163219
cpp shape.cpp
#include
class Shape
{
public:
void Draw();
void Show();
};
class Circle : public Shape
{
public:
void Draw();
};
class Square : public Shape
{
public:
www.eeworm.com/read/130612/14181486
java shape.java
// Chapter 6 Exercise 3
// BASE CLASS FOR SHAPES - it is still an abstract class since it does not
// implement the show() method declared in the ShapeInterface.
// The move() method that is im
www.eeworm.com/read/130612/14181499
java shape.java
// Chapter 6 Exercises 1 & 2
// ABSTRACT BASE CLASS FOR SHAPE.
// The move() method that is implemented here assumes shapes are defined
// relative to the reference point, position, so subclass
www.eeworm.com/read/129207/14257920
java shape.java
/*
* Created on 2005-4-2
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package bubbletea;
import java.awt.G