代码搜索:construct

找到约 6,584 项符合「construct」的源代码

代码结果 6,584
www.eeworm.com/read/188651/8521412

cpp test.cpp

#include "zfstream.h" int main() { // Construct a stream object with this filebuffer. Anything sent // to this stream will go to standard out. gzofstream os( 1, ios::out ); // Th
www.eeworm.com/read/288670/8614551

java graphprog.java

package grapro; import javax.swing.UIManager; import java.awt.*; public class GraphProg { boolean packFrame = false; /**Construct the application*/ public GraphProg() { GraFrame frame = n
www.eeworm.com/read/387688/8659207

java creditcard.java

package card; import javax.swing.UIManager; import java.awt.*; public class creditCard { boolean packFrame = false; //Construct the application public creditCard() { loginFrame frame = n
www.eeworm.com/read/287770/8670432

m metasignal.m

function m = metasignal(varargin) %function m = metasignal(vargin) %Construct a Meta-Signal object % Should accept at least the following input: % - 'filename.wav' (TIMIT file) % - sign
www.eeworm.com/read/387427/8683587

java creditcard.java

package card; import java.awt.*; import javax.swing.*; /** * 主程序入口 */ public class CreditCard { boolean packFrame = false; /** * Construct and show the application. */ pu
www.eeworm.com/read/431198/8703114

lst mod6ans.lst

listing 1 // A stack class for characters. class Stack { private char stck[]; // this array holds the stack private int tos; // top of stack // Construct an empty Stack given its
www.eeworm.com/read/431198/8703162

java extendthread.java

/* Project 11-1 Extend Thread. */ class MyThread extends Thread { int count; // Construct a new thread. MyThread(String name) { super(name); // name thread
www.eeworm.com/read/386050/8768336

m wvotec.m

%WVOTEC Weighted combiner (Adaboost weights) % % W = WVOTEC(A,V) compute weigths and store % W = WVOTEC(V,U) Construct weighted combiner using weights U % % INPUT % A Labeled data
www.eeworm.com/read/284410/8935438

cpp test.cpp

#include "zfstream.h" int main() { // Construct a stream object with this filebuffer. Anything sent // to this stream will go to standard out. gzofstream os( 1, ios::out ); // Th
www.eeworm.com/read/185551/9032669

hpp clibrary.hpp

// Our class to dynamically load libraries! #ifndef _CLIBRARY_HPP #define _CLIBRARY_HPP #include class CLibrary { protected: HINSTANCE handle; public: // Construct