代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/371859/9532908
class rectangle.class
www.eeworm.com/read/371859/9532911
java rectangle.java
/**
*Title:Rectangle.java
*Description:This class defines a rectangle and
*it is a subclasse of class Shape
*@author: Peng yu
*@version:1.0
*/
public class Rectangle extends Shap
www.eeworm.com/read/175226/9554865
hpp rectangle.hpp
// Begin Rectangle.hpp
#include
class Point // holds x,y coordinates
{
// no constructor, use default
public:
void SetX(int x) { itsX = x; }
void SetY(int y) { itsY =
www.eeworm.com/read/366706/9802003
class rectangle.class
www.eeworm.com/read/366706/9802026
java rectangle.java
package counttest;
public class Rectangle extends GeometricObject {
private double width;
private double height;
/** Construct a rectangle with default properties */
public Rectangle(
www.eeworm.com/read/169263/9870942
cs rectangle.cs
using System;
class Rectangle
{
private int iHeight;
private int iWidth;
// 缺省构造函数
public Rectangle()
{
Height=0;
Width=0;
}
// 构造函数重载
public Rectangle(int w
www.eeworm.com/read/169263/9870944
exe rectangle.exe
www.eeworm.com/read/363888/9932631
cpp rectangle.cpp
//: C09:Rectangle.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Accessors & mutators
class
www.eeworm.com/read/167475/9967981