代码搜索:多时钟域
找到约 10,000 项符合「多时钟域」的源代码
代码结果 10,000
www.eeworm.com/read/124314/14577345
cpp ex4_8.cpp
#include
void swap(int,int);
void main(){
int a,b; //a,b作用域为main()
coutb;
cout
www.eeworm.com/read/215702/15052475
h 9_5.h
//9_5.h
#ifndef NODE_CLASS
#define NODE_CLASS
//类声明部分
template
class Node
{
private:
Node *next; //指向后继结点的指针
public:
T data; //数据域
Node (con
www.eeworm.com/read/212829/15148293
h cirlinklist.h
//单循环链表的类定义cirlinklist.h
#define LEN 20
typedef int ElemType;
//单循环链表中结点的类型
typedef struct Lnode {
ElemType data; //值域
Lnode* next; //指针域
}LNode;
class cirlinklist
{private:
LNode
www.eeworm.com/read/206115/15299751
h c6-4.h
/* c6-4.h 树的双亲表存储表示 */
#define MAX_TREE_SIZE 100
typedef struct
{
TElemType data;
int parent; /* 双亲位置域 */
} PTNode;
typedef struct
{
PTNode nodes[MAX_TREE_SIZE];
int n; /*
www.eeworm.com/read/243085/4532616
java chatpad.java
package com.fivechess.chessface;
import java.awt.BorderLayout;
import java.awt.Panel;
import java.awt.TextArea;
/**
* @author wufenghanren
* 聊天信息Panel。Panel上的文本域可以显示用户聊天信息。
*/
public c
www.eeworm.com/read/219565/4847463
java chatpad.java
package com.fivechess.chessface;
import java.awt.BorderLayout;
import java.awt.Panel;
import java.awt.TextArea;
/**
* @author wufenghanren
* 聊天信息Panel。Panel上的文本域可以显示用户聊天信息。
*/
public c
www.eeworm.com/read/216661/4889169
java chatpad.java
package com.fivechess.chessface;
import java.awt.BorderLayout;
import java.awt.Panel;
import java.awt.TextArea;
/**
* @author wufenghanren
* 聊天信息Panel。Panel上的文本域可以显示用户聊天信息。
*/
public c