代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/392558/2494038
java rectangle.java
package com.javapatterns.liskov.version1;
public class Rectangle
{
private long width;
private long height;
public void setWidth(long width)
{
this.width = width
www.eeworm.com/read/392558/2494176
java rectangle.java
package com.javapatterns.composite.drawingsafe;
public class Rectangle extends Graphics
{
public void draw()
{
//write your code here
}
}
www.eeworm.com/read/392558/2494191
java rectangle.java
package com.javapatterns.composite.drawingtransparent;
public class Rectangle extends Graphics
{
public void draw()
{
//write your code here
}
public void add(Graph
www.eeworm.com/read/389693/2539934
java rectangle.java
package book.oo.shape;
/**
* 长方形
*/
public class Rectangle extends MyShape {
//长方形的长
private double length;
//长方形的宽
private double width;
//边长错误信息
public static final String SIDEER
www.eeworm.com/read/389693/2540005
java rectangle.java
package book.graphic.painter2D;
import java.awt.Color;
import java.awt.Graphics;
// 画矩形
public class Rectangle implements Shape {
// 矩形左上角位置的坐标,x、y值
private int x;
private int y;
//
www.eeworm.com/read/382361/2637579
c rectangle.c
/* Produce a rectangular wave on output 0 of a parallel port */
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/381758/2641219
java rectangle.java
public class Rectangle {
public int width = 0;
public int height = 0;
public Point origin;
// four constructors
public Rectangle() {
origin = new Point(0, 0);
}
public Re
www.eeworm.com/read/381758/2641230
java rectangle.java
/*
* This example requires no changes from the 1.0 version. You can
* find the 1.0 version in ../example/Rectangle.java.
*/
www.eeworm.com/read/381758/2641251
java rectangle.java
public class Rectangle {
public int width = 0;
public int height = 0;
public Point origin;
// four constructors
public Rectangle() {
origin = new Point(0, 0);
}
public Re
www.eeworm.com/read/381758/2641283
java rectangle.java
public class Rectangle {
public int width = 0;
public int height = 0;
public Point origin;
// four constructors
public Rectangle() {
origin = new Point(0, 0);
}
public Re