代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/299153/7882718
java rectangle.java
package com.javapatterns.liskov.version4;
public class Rectangle
{
private long width;
private long height;
public void setWidth(long width)
{
this.width = width
www.eeworm.com/read/299153/7882726
java rectangle.java
package com.javapatterns.liskov.version2;
public class Rectangle
{
private long width;
private long height;
public void setWidth(long width)
{
this.width = width
www.eeworm.com/read/299153/7882734
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/299153/7883181
java rectangle.java
package com.javapatterns.composite.drawingsafe;
public class Rectangle extends Graphics
{
public void draw()
{
//write your code here
}
}
www.eeworm.com/read/299153/7883233
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/398826/7917050
c rectangle.c
/****************************************************************
File Name: rectangle.C
Author: Tian Zhang, CS Dept., Univ. of Wisconsin-Madison, 1995
Copyright(c) 1995 by Tian
www.eeworm.com/read/398826/7917100
h rectangle.h
/****************************************************************
File Name: rectangle.h
Author: Tian Zhang, CS Dept., Univ. of Wisconsin-Madison, 1995
Copyright(c) 1995 by Tian
www.eeworm.com/read/298961/7919367
cpp rectangle.cpp
// Rectangle.cpp: implementation of the Rectangle class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Rectangle.h"
/////////////////
www.eeworm.com/read/298961/7919398
h rectangle.h
// Rectangle.h: interface for the Rectangle class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_RECTANGLE_H__9E87233D_ED13_4D3B_9CF7_E33330E014DF__IN
www.eeworm.com/read/433362/7938737