代码搜索:construct
找到约 6,584 项符合「construct」的源代码
代码结果 6,584
www.eeworm.com/read/343804/11926683
v ir.v
module IR
(
IRInput,
LED,
clkfast
);
input IRInput;
input clkfast;
output[7:0] LED;
// Wire Declaration
assign LED[0] = !IRInput;
// Integer Declaration
// Concurrent
www.eeworm.com/read/341877/12056869
h match.h
/*
EPSHeader
File: match.h
Author: J. Kercheval
Created: Sat, 01/05/1991 22:27:18
*/
/*
EPSRevision History
J. Kercheval Wed, 02/20/1991 22:28:37 Released to Public Domai
www.eeworm.com/read/152920/12074275
cpp 程序8.07:break和continue语句的使用.cpp
/* 程序8.7:break和continue语句的使用.cpp */
#include //包含头文件
using namespace std; //使用名字空间std
class Construct //声明一个类Construct
{
private: //声明私有成员变量
char cStr;
int iNum;
public:
www.eeworm.com/read/341404/12084998
cpp 1028 - 2.cpp
#include
using namespace std;
const int maxX = 32000;
const int maxC = 15000;
int level[maxC + 100];
int len = 1;
class sTree
{
public:
int left, right;
int val;
www.eeworm.com/read/341217/12099290
java client.java
package com.javapatterns.builder.simplified2;
public class Client
{
private static Builder builder;
static public void main(String[] args)
{
builder = new Builder();
builde
www.eeworm.com/read/253821/12184417
c tree.c
#include
#include
struct tree
{
char info;
struct tree *left;
struct tree *right;
};
struct tree *root; /*树的第一个结点*/
struct tree *construct(struct tree *root, stru
www.eeworm.com/read/339483/12231507
sh arith-tests.sh
#!/bin/bash
# Arithmetic tests.
# The (( ... )) construct evaluates and tests numerical expressions.
# Exit status opposite from [ ... ] construct!
(( 0 ))
echo "Exit status of \"(( 0 ))\" is $?."
www.eeworm.com/read/253260/12234587
h stonewt1.h
// stonewt1.h -- revised definition for the Stonewt class
#ifndef STONEWT1_H_
#define STONEWT1_H_
class Stonewt
{
private:
enum {Lbs_per_stn = 14}; // pounds per stone
int stone;
www.eeworm.com/read/253260/12235346
h stonewt1.h
// stonewt1.h -- revised definition for the Stonewt class
#ifndef STONEWT1_H_
#define STONEWT1_H_
class Stonewt
{
private:
enum {Lbs_per_stn = 14}; // pounds per stone
int stone;
www.eeworm.com/read/339329/12242332
cpp test_alloc.cpp
///
///
#ifdef _DEBUG
//#include "vld.h"
#endif
#include "kl_cmempool.h"
#include "kl_allocator.h"
#include
#include
#include
#include
#include "timer.h