代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/169058/9882812
java icecream.java
//: arrays/IceCream.java
// Returning arrays from methods.
import java.util.*;
public class IceCream {
private static Random rand = new Random(47);
static final String[] FLAVORS = {
"C
www.eeworm.com/read/168118/9937577
m desig.m
function trout=desig(trin,wavelet,stab,flag)
%
% trout= desig(trin,wavelet,stab,flag)
% trout= desig(trin,wavelet,stab)
% trout= desig(trin,wavelet)
%
% DESIG uses frequency domain methods to deconvol
www.eeworm.com/read/167186/9977210
pas debugger.pas
unit Debugger;
//just my place to play with all kinds of threading methods
//when i find out the best suited method I'll use that....
interface
uses Classes,windows,sysutils,cefuncproc,Message
www.eeworm.com/read/359445/10145650
java tree.java
import java.awt.*;
import java.util.Vector;
class Tree {
//variables
Vector set;
Node rep;
//constructor
public Tree( ) {
set = new Vector();
}
//methods
public void Combine( Tree tree
www.eeworm.com/read/359445/10145724
java tree.java
import java.awt.*;
import java.util.Vector;
class Tree {
//variables
Vector set;
Node rep;
//constructor
public Tree( ) {
set = new Vector();
}
//methods
public void Combine( Tree tree
www.eeworm.com/read/359445/10145826
java tree.java
import java.awt.*;
import java.util.Vector;
class Tree {
//variables
Vector set;
Node rep;
//constructor
public Tree( ) {
set = new Vector();
}
//methods
public void Combine( Tree tree
www.eeworm.com/read/359005/10172036
m contents.m
% Fuzzy Logic Toolbox Demos.
%
% General demos
% defuzzdm - Defuzzification methods.
% fcmdemo - Fuzzy c-means clustering demo (2-D).
% fuzdemos - List of all Fuzzy Logic Toolbox dem
www.eeworm.com/read/358682/10182073
cpp stonewt1.cpp
// stonewt1.cpp -- Stonewt class methods + conversion functions
#include
using std::cout;
#include "stonewt1.h"
// construct Stonewt object from double value
Stonewt::Stonewt(double
www.eeworm.com/read/358682/10182123
cpp studenti.cpp
// studenti.cpp -- Student class using private inheritance
#include "studenti.h"
using std::ostream;
using std::endl;
using std::istream;
using std::string;
// public methods
double Student::
www.eeworm.com/read/358682/10182129
cpp studentc.cpp
// studentc.cpp -- Student class using containment
#include "studentc.h"
using std::ostream;
using std::endl;
using std::istream;
using std::string;
//public methods
double Student::Average()