代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/455639/1609992
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/455463/1614172
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/451586/1660423
java transferable.java
package rabbit.proxy;
import java.io.IOException;
import java.nio.channels.WritableByteChannel;
/** The methods needed for fast transferTo.
*
* @author Robert
www.eeworm.com/read/250753/4427183
java imsproxy.java
// IMSProxy.java
// IMSProxy interface defines methods that IM services
// must implement
package com.deitel.advjhtp1.jini.IM.service;
//java core packages
import java.rmi.RemoteException;
/
www.eeworm.com/read/249104/4457603
cs class1.cs
using System;
using System.Data;
using System.Data.SqlClient;
// "AbstractClass"抽象类
abstract class DataObject
{
// Methods 方法
abstract public void Connect();
abstract public void Select
www.eeworm.com/read/244569/4510568
java productbean.java
package com.ora.jsp.beans.shopping;
import java.io.*;
/**
* This class represents a product. It holds information about the
* product's name, description and price. All setter methods have
www.eeworm.com/read/244085/4512768
java belllistener.java
// BellListener.java
// Methods invoked when Bell has rung
package com.deitel.jhtp5.elevator.event;
public interface BellListener {
// invoked when Bell has rungs
public void bellRang(
www.eeworm.com/read/244085/4512777
java doorlistener.java
// DoorListener.java
// Methods invoked when Door has either opened or closed
package com.deitel.jhtp5.elevator.event;
public interface DoorListener {
// invoked when Door has opened
pu
www.eeworm.com/read/242657/4550252
gperf modula3.gperf
AND
ARRAY
BEGIN
BITS
BY
CASE
CONST
DIV
DO
ELSE
ELSIF
END
EVAL
EXCEPT
EXCEPTION
EXIT
EXPORTS
FINALLY
FOR
FROM
IF
IMPORT
INTERFACE
IN
INLINE
LOCK
METHODS
MOD
MODULE
NOT
OBJECT
OF
OR
PROCEDURE
RAISES
REA
www.eeworm.com/read/242331/4554577
txt 8-3.txt
// First, define some functions that will be used as methods.
function Rectangle_area() { return this.width * this.height; }
function Rectangle_perimeter() { return 2*this.width + 2*this.height; }
fun