代码搜索:construct
找到约 6,584 项符合「construct」的源代码
代码结果 6,584
www.eeworm.com/read/456386/7350110
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/456367/7350590
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/456367/7350874
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/454660/7386014
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/454660/7386025
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/447017/7560617
java~3~ rframe.java~3~
import javax.swing.UIManager;
import java.awt.*;
public class RFrame {
boolean packFrame = false;
//Construct the application
public RFrame() {
}
//Main method
public static void main(S
www.eeworm.com/read/447017/7560626
java~2~ rframe.java~2~
import javax.swing.UIManager;
import java.awt.*;
public class RFrame {
boolean packFrame = false;
//Construct the application
public RFrame() {
MainFrame frame = new MainFrame();
}
//M
www.eeworm.com/read/435150/7796229
h mystring.h
// Exercise 14.4 MyString.h
// Definition of the MyString class representing strings
#ifndef MYSTRING_H
#define MYSTRING_H
namespace mySpace {
class MyString {
public:
MyString();
www.eeworm.com/read/435150/7796235
h mystring.h
// Exercise 14.5 MyString.h
// Definition of the MyString class representing strings
#ifndef MYSTRING_H
#define MYSTRING_H
namespace mySpace {
class MyString {
public:
MyString();
www.eeworm.com/read/434781/7801979
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