代码搜索:construct
找到约 6,584 项符合「construct」的源代码
代码结果 6,584
www.eeworm.com/read/435150/7796226
h mystring.h
// Exercise 14.2 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/197649/7983284
m zmap.m
function [zx,zt]=zmap(x)
% [zx,zt]=zmap(z): Construct 1-D map from z(1:n);
% Z. SHEN May 1997
% At Caltech
n=length(x);
zt=zeros(n-1,1);
zx=zeros(n-1,1);
for i=1:n-1
zt(i)=x(i);
www.eeworm.com/read/397799/8021321
m wspace.m
function w = wspace(t,nt);
% This function constructs a linearly-spaced vector of angular
% frequencies that correspond to the points in an FFT spectrum.
% The second half of the vector is aliase
www.eeworm.com/read/142092/12963540
m zmap.m
function [zx,zt]=zmap(x)
% [zx,zt]=zmap(z): Construct 1-D map from z(1:n);
% Z. SHEN May 1997
% At Caltech
n=length(x);
zt=zeros(n-1,1);
zx=zeros(n-1,1);
for i=1:n-1
zt(i)=x(i);
www.eeworm.com/read/101039/6259632
java swingworker.java
/******************************************************************************
* The contents of this file are subject to the Compiere License Version 1.1
* ("License"); You may not use this f
www.eeworm.com/read/490529/6447254
qmsg mux4.map.qmsg
{ "Info" "IQEXE_SEPARATOR" "" "Info: *******************************************************************" { } { } 3 0 "*******************************************************************" 0 0}
{ "I
www.eeworm.com/read/486654/6524519
cpp 1021.cpp
/* This Code is Submitted by wywcgs for Problem 1021 on 2006-02-07 at 16:23:24 */
#include
#include
#include
using namespace std;
const int MAX = 64;
const int
www.eeworm.com/read/481966/6633818
cpp 1021.cpp
/* This Code is Submitted by wywcgs for Problem 1021 on 2006-02-07 at 16:23:24 */
#include
#include
#include
using namespace std;
const int MAX = 64;
const int
www.eeworm.com/read/339483/12230715
sh c-vars.sh
#!/bin/bash
# Manipulating a variable, C-style, using the ((...)) construct.
echo
(( a = 23 )) # Setting a value, C-style, with spaces on both sides of the "=".
echo "a (initial value) = $a"
(( a