代码搜索:shape
找到约 10,000 项符合「shape」的源代码
代码结果 10,000
www.eeworm.com/read/449042/1682817
java shape.java
//: polymorphism/shape/Shape.java
package polymorphism.shape;
public class Shape {
public void draw() {}
public void erase() {}
} ///:~
www.eeworm.com/read/446978/1707646
java shape.java
//: polymorphism/shape/Shape.java
package polymorphism.shape;
public class Shape {
public void draw() {}
public void erase() {}
} ///:~
www.eeworm.com/read/446555/1711610
txt shape.txt
This program uses hierarchies for Shapes
RECTANGLE Height = 4.1 Width = 5.2 area = 21.32
CIRCLE Radius = 6.1 area = 116.899
SQUARE Height = 5.1 area = 26.01
www.eeworm.com/read/445571/1720429
cs shape.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
public enum shape
{
square,
round,
butt
}
}
www.eeworm.com/read/444120/1736342
java shape.java
/**
* Shape.java - shape component.
* Mark Bryan Yu
* jimagemapper.sourceforge.net
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the
www.eeworm.com/read/443423/1740535
java shape.java
// Shape.java
// 定义形状接口
public interface Shape {
public abstract double area();
public abstract double volume();
public abstract String getName();
}
www.eeworm.com/read/440906/1784429
java shape.java
/* Shape.java -- the classic Object-Oriented shape interface
Copyright (C) 1999, 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can re
www.eeworm.com/read/440141/1801073
java shape.java
/*******************************************************************************
* Copyright (c) 2004, 2005 Elias Volanakis and others.
�* All rights reserved. This program and the accompanying mater
www.eeworm.com/read/440061/1802997
js shape.js
/*
Copyright (c) 2004-2006, The Dojo Foundation
All Rights Reserved.
Licensed under the Academic Free License version 2.1 or above OR the
modified BSD license. For more information on Dojo licens
www.eeworm.com/read/437714/1829609
java shape.java
package cn.itcast.tetris.entities;
import java.awt.Color;
import java.awt.Graphics;
import java.util.TooManyListenersException;
import cn.itcast.tetris.listener.ShapeListener;
import cn.itcas