代码搜索:construct
找到约 6,584 项符合「construct」的源代码
代码结果 6,584
www.eeworm.com/read/353439/10446920
java c.java
// reusing/Ex5/C.java
// TIJ4 Chapter Reusing, Exercise 5, page 245
/* Create two classes, A and B, with default constructors (empty argument
* lists) that announce themselves. Inherit a new class
www.eeworm.com/read/352425/10553571
java c7.java
// reusing/Ex7/C7.java
// TIJ4 Chapter Reusing, Exercise 7, page 246
/* Modify Exercise 5 so that A and B have constructors with arguments instead
* of default constructors. Write a constructor for
www.eeworm.com/read/352425/10553620
java c.java
// reusing/Ex5/C.java
// TIJ4 Chapter Reusing, Exercise 5, page 245
/* Create two classes, A and B, with default constructors (empty argument
* lists) that announce themselves. Inherit a new class
www.eeworm.com/read/278099/10570488
h match.h
/* +++Date last modified: 05-Jul-1997 */
/*
EPSHeader
File: match.h
Author: J. Kercheval
Created: Sat, 01/05/1991 22:27:18
*/
/*
EPSRevision History
J. Kercheval Wed, 02
www.eeworm.com/read/278058/10577512
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/352055/10584669
cpp main.cpp
#include "Builder.h"
#include "Product.h"
#include "Director.h"
#include
using namespace std;
int main(int argc,char* argv[])
{
Director* d = new Director(new ConcreteBuilder()
www.eeworm.com/read/159920/10589008
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/421976/10673423
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/350642/10722473
cpp list1.cpp
#ifdef __BCPLUSPLUS__
#include
#else
#include
#endif
#include
#include
using namespace std;
typedef list LISTSTR;
// Try each of the four c
www.eeworm.com/read/349343/10834438
cpp main.cpp
//main.cpp
#include "Builder.h"
#include "Product.h"
#include "Director.h"
#include
using namespace std;
int main(int argc,char* argv[])
{
Director* d = new Director(new Co