代码搜索:element
找到约 10,000 项符合「element」的源代码
代码结果 10,000
www.eeworm.com/read/334314/12613227
in element_ansys.in
1 2 3 3 0 0 0 0 1 1 1 1 0 1
2 4 5 5 0 0 0 0 1 1 1 1 0 2
5 3 2 2
www.eeworm.com/read/134951/13969418
h element.h
// Element.h: interface for the CElement class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ELEMENT_H__E8836022_4B24_40AE_A6D1_8A42D2352859__INCLUDE
www.eeworm.com/read/134951/13969439
cpp element.cpp
// Element.cpp: implementation of the CElement class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "exp22_1.h"
#include "Element.h"
www.eeworm.com/read/134951/13969530
h element.h
// Element.h: interface for the CElement class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ELEMENT_H__E8836022_4B24_40AE_A6D1_8A42D2352859__INCLUDE
www.eeworm.com/read/134951/13969548
cpp element.cpp
// Element.cpp: implementation of the CElement class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "exp24_1.h"
#include "Element.h"
www.eeworm.com/read/134950/13969719
h element.h
#include
double const PI=3.14159;
class CElement {
public:
virtual void Show()=0;
virtual double Area() = 0;
CElement *Next;
};
class CPoint:public CElement{
friend class CL
www.eeworm.com/read/134950/13969721
cpp element.cpp
#include
#include "element.h"
CElemList::~CElemList(){
CElement *p = head,*p2;
while(p){
p2 = p;
p = p->Next;
delete p2;
}
return ;
}
void CElemList::Insert(CElement *elem