代码搜索:methods

找到约 10,000 项符合「methods」的源代码

代码结果 10,000
www.eeworm.com/read/204456/15339349

m knndd.m

%KNNDD K-Nearest neighbour data description method. % % W = KNNDD(A,FRACREJ,K,METHOD) % % Calculates the K-Nearest neighbour data description on dataset A. % Three methods are defined to compu
www.eeworm.com/read/202831/15371968

java cachedstatement.java

/* DBPool - JDBC Connection Pool Manager Copyright (c) Giles Winstanley */ package snaq.db; import snaq.util.Reusable; import java.sql.*; /** * Statement wrapper that provides methods f
www.eeworm.com/read/107694/15603200

txt pcnfs.txt

D-Link DFE-530TX PCI Fast Ethernet Adapter Installation for SUN PC-NFS V5.0 Getting Started --------------- Please read all methods below and c
www.eeworm.com/read/106588/15633600

h view.h

#ifndef VIEW_H #define VIEW_H // Contains methods to display user interface, called by model class View { public: static View * Instance() {}; View() {}; virtual ~View() {}; virtual int P
www.eeworm.com/read/290185/8498517

java practical quiz 9.employeefileio.java

import java.util.*; import java.io.*; /** * This class provides two file I/O methods for handling employee data. * * @author Neil * @version 1.0.0 * @see Employee */ public class Emp
www.eeworm.com/read/389293/8535559

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/389291/8535774

java printtest.java

//: access/PrintTest.java // Uses the static printing methods in Print.java. import static net.mindview.util.Print.*; public class PrintTest { public static void main(String[] args) { pri
www.eeworm.com/read/388617/8595104

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/388617/8595315

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/388617/8595335

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()