代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/430096/8767299
java testex5.java
// interfaces.TestEx5.java
// TIJ4 Chapter Interfaces, Exercise 5, page 320
// Create an interface containing three methods, in its own package. Implement it
// in another package.
/* Solution inc
www.eeworm.com/read/429621/8798057
m m3a.m
% This M-file, m3a.m, is for Project 3 on methods of braking
% of separately-excited dc motor in Chapter 8
% It is to be used in conjunction with the Simulink file s3a.m
% for the first two parts
www.eeworm.com/read/187222/8841169
java passobject.java
//: PassObject.java
// Passing objects to methods can be a bit tricky
class Letter {
char c;
}
public class PassObject {
static void f(Letter y) {
y.c = 'z';
}
public static void m
www.eeworm.com/read/281848/9129792
java functional42.java
// generics/Functional42.java
// TIJ4 Chapter Generics, Exercise 42, page 743
/*
* Create two separate classes, with nothing in common. Each class should
* hold a value, and at least have methods
www.eeworm.com/read/281848/9130429
java rodent1.java
// interfaces/rodent/Rodent1.java
// TIJ4 Chapter Interfaces, Exercise 1, page 315
/* Modify Exercise 9 in the previous chapter so that Rodent is an abstract class.
* Make the methods of Rodent abs
www.eeworm.com/read/281848/9130432
java ex4.java
// interfaces/Ex4.java
// TIJ4 Chapter Interfaces, Exercise 4, page 315
/* Create an abstract class with no methods. Derive a class and add a method.
* Create a static method that takes a referenc
www.eeworm.com/read/281848/9130450
java ex2.java
// interfaces/Ex2.java
// TIJ4 Chapter Interfaces, Exercise 2, page 315
// Create a class as abstract without including any abstract methods, and verify
// that you cannot create any instances of t
www.eeworm.com/read/281848/9130459
java testex5.java
// interfaces.TestEx5.java
// TIJ4 Chapter Interfaces, Exercise 5, page 320
// Create an interface containing three methods, in its own package. Implement it
// in another package.
/* Solution inc
www.eeworm.com/read/183326/9169701
sh mkparametrized.sh
#!/bin/sh
# $Id: MKparametrized.sh,v 1.5 2000/10/01 00:57:24 tom Exp $
#
# MKparametrized.sh -- generate indirection vectors for various sort methods
#
# The output of this script is C source for an a
www.eeworm.com/read/180054/9321762
txt @psc_readme_2004_2.txt
Title: CannonGame.java
Description: I found this Cannon Game applet on the java.sun.com site. It was old and had many deprecated methods so I turned it into an application updated it so that it had n