代码搜索:shape
找到约 10,000 项符合「shape」的源代码
代码结果 10,000
www.eeworm.com/read/117319/14931116
h shape.h
/************************************************************************************************
// $Header:$
//*************************************************************************************
www.eeworm.com/read/116936/14948581
java shape.java
// Shape.java
// 定义形状接口
public interface Shape {
public abstract double area();
public abstract double volume();
public abstract String getName();
}
www.eeworm.com/read/116603/14962710
class shape.class
www.eeworm.com/read/216898/14987387
h shape.h
/***************************************************************************
* blitz/array/shape.h
*
* Copyright (C) 1997-2001 Todd Veldhuizen
*
* This program i
www.eeworm.com/read/216898/14988083
cpp shape.cpp
/*
* Intended coverage: blitz/arrayshape.h
*/
#include "testsuite.h"
#include
#include
BZ_USING_NAMESPACE(blitz)
int main()
{
TinyVector a1(1);
www.eeworm.com/read/114696/15041675
java shape.java
// Shape.java
// 定义形状接口
public interface Shape {
public abstract double area();
public abstract double volume();
public abstract String getName();
}
www.eeworm.com/read/114408/15054155
cpp shape.cpp
// Shape.cpp: implementation of the Shape class.
//
//////////////////////////////////////////////////////////////////////
#include
#include "ezwin.h"
#include "WindowObject.h"
#inclu
www.eeworm.com/read/114408/15054184
h shape.h
// Shape.h: interface for the Shape class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SHAPE_H__D2C10323_2F68_41F7_AAB0_33BCD5C356DC__INCLUDED_)
#d
www.eeworm.com/read/213563/15130315
java shape.java
package ch10.section07;
public interface Shape {
public void Draw();
public void Border();
}
www.eeworm.com/read/210714/15192765