代码搜索:shape
找到约 10,000 项符合「shape」的源代码
代码结果 10,000
www.eeworm.com/read/406309/2278834
h shape.h
/************************************************************
Copyright (c) 1989 X Consortium
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and assoc
www.eeworm.com/read/406309/2279064
c shape.c
/************************************************************
Copyright (c) 1989 X Consortium
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and assoc
www.eeworm.com/read/405777/2283199
java shape.java
package s2Java.sg.appendix.drawing;
public class Shape {
private int weight ;
String name;
protected int size;
int getWeight(){
return weight;
}
public int getSize() {
retu
www.eeworm.com/read/405777/2283296
java shape.java
/*
* 案例说明:类Shape(父类) ,Triangle类(子类),Rectangle类(子类),Pentagon类(子类)中的Draw()方法的不同操作解释多态的概念。
*/
public class Shape {
public void draw() {
System.out.println("画了一个图形");
}
}
www.eeworm.com/read/401563/2338972
js shape.js
/*
Copyright (c) 2004-2008, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
if(
www.eeworm.com/read/399050/2366166
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/397826/2399110
java shape.java
package com.javapatterns.simplefactory.exercise;
public interface Shape
{
void draw();
void erase();
}
www.eeworm.com/read/393229/2486582
java shape.java
/* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file di
www.eeworm.com/read/393229/2486736
java shape.java
/* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file di
www.eeworm.com/read/392558/2494042
java shape.java
package com.javapatterns.simplefactory.exercise;
public interface Shape
{
void draw();
void erase();
}