代码搜索:construct
找到约 6,584 项符合「construct」的源代码
代码结果 6,584
www.eeworm.com/read/111805/15503035
java point.java
// Chapter 6 Exercise 4
public class Point {
protected double x;
protected double y;
// Constructors:
public Point() {
x = 0.0;
y = 0.0;
}
// Construct a Point from
www.eeworm.com/read/111805/15503042
java point.java
// Chapter 6 Exercise 3
public class Point {
protected double x;
protected double y;
// Constructors:
public Point() {
x = 0.0;
y = 0.0;
}
// Construct a Point from
www.eeworm.com/read/111805/15503051
java point.java
// Chapter 6 Exercises 1 & 2
public class Point {
protected double x = 0.0;
protected double y = 0.0;
// Constructors:
public Point(){}
// Construct a Point from its coordinates:
www.eeworm.com/read/100916/15861381
cpp resizablepageex.cpp
// ResizablePageEx.cpp : implementation file
//
/////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2000-2001 by Paolo Messina
// (http://www.geociti
www.eeworm.com/read/100395/15874812
html constr.html
Newmat09 - constructors
Constructors
next -
skip -
up -
www.eeworm.com/read/291878/8391374
v bidirec.v
module bidirec (oe, //oe = 0 ==> bidir to outp, oe = 1 ==> inp to bidir
clk, //Clock
inp, //Data in
outp, //Data out
bidir); // duport
// Port Declaration
input oe;
input
www.eeworm.com/read/289241/8565256
cpp 05_02.cpp
// 05_02.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
#include
using namespace std;
class PlaneHead {
p
www.eeworm.com/read/388617/8595113
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;