代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/160839/10491757
class rectangle.class
www.eeworm.com/read/352334/10562863
java rectangle.java
package LSP;
public class Rectangle {
public void SetWidth(double w)
{
this.itsWidth = w;
}
public void SetHeight(double h)
{
this.itsHeight = h;
}
public double GetHeight()
{
www.eeworm.com/read/352334/10562889
java rectangle.java
package LSP1;
public class Rectangle {
public void SetWidth(double w)
{
this.itsWidth = w;
}
public void SetHeight(double h)
{
this.itsHeight = h;
}
public double GetHeight()
www.eeworm.com/read/352334/10562927
class rectangle.class
www.eeworm.com/read/352334/10562944
class rectangle.class
www.eeworm.com/read/159990/10581847
class rectangle.class
www.eeworm.com/read/277459/10634662
cs rectangle.cs
using System;
namespace CsharpPats
{
///
/// Summary description for Rectangle.
///
public class Rectangle
{
private int xp, yp, wr, hr;
public Rectangle(int x
www.eeworm.com/read/277459/10634742
cs rectangle.cs
using System;
namespace CsharpPats
{
///
/// Summary description for Rectangle.
///
public class Rectangle
{
private int xp, yp, wr, hr;
public Rectangle(int x
www.eeworm.com/read/277459/10634821
cs rectangle.cs
using System;
using System.Drawing ;
namespace CsharpPats
{
///
/// Draws a rectangle using a supplied Graphics object
///
public class Rectangle {
private int x, y,
www.eeworm.com/read/277459/10634892
cs rectangle.cs
using System;
using System.Drawing ;
namespace CsharpPats
{
///
/// Summary description for Rectangle.
///
public class Rectangle:Shape {
public Rectangle(int x, in