代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/281848/9130206
java stem2.java
// reusing/Stem2.java
// TIJ4 Chapter Reusing, Exercise 12, page 254
// Add a proper hierarchy of dispose() methods to all the classes of exercise 9.
/* EX 9: Create a class called Root that conta
www.eeworm.com/read/281848/9130460
java music9.java
// interfaces/music9/Music9.java
// TIJ4 Chapter Interfaces, Exercise 9, page 320
/* Refactor Music5.java by moving the common methods in Wind, Percussion and
* Stringed into an abstract class.
*/
www.eeworm.com/read/380481/9145801
c stdinredir2.c
/* stdinredir2.c
* shows two more methods for redirecting standard input
* use #define to set one or the other
*/
#include
#include
/* #define CLOSE_DUP /* open, close, dup,
www.eeworm.com/read/377523/9272964
java unsupported.java
//: c09:Unsupported.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Sometimes methods defined in the
// Collection interfac
www.eeworm.com/read/377523/9273210
java showaddlisteners.java
//: c13:ShowAddListeners.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Display the "addXXXListener" methods of any
// Sw
www.eeworm.com/read/179809/9336028
f sw.f
program stegwarm
c...Solves the Riemann problem for the Euler equations using first-order
c...upwind methods based on STEGER-WARMING flux vector splitting.
c...Number of grid points.
www.eeworm.com/read/179809/9336037
f vanleer.f
program vanleer
c...Solves the Riemann problem for the Euler equations using first-order
c...upwind methods based on VAN LEER flux vector splitting.
c...Number of grid points.
parame
www.eeworm.com/read/177878/9429023
java road2.java
package tools;
import java.awt.Point;
public class Road2 extends PtTools{
//methods
public Road2 ( Point k ){
super(k);
super.setID(4);
}
// GetID, SetID, GetLocation, SetLo
www.eeworm.com/read/177878/9429025
java road5.java
package tools;
import java.awt.Point;
public class Road5 extends PtTools{
//methods
public Road5 ( Point k ){
super(k);
super.setID(7);
}
// GetID, SetID, GetLocation, SetLo
www.eeworm.com/read/177878/9429038
java road1.java
package tools;
import java.awt.Point;
public class Road1 extends PtTools{
//methods
public Road1 ( Point k ){
super(k);
super.setID(3);
}
// GetID, SetID, GetLocation, SetLo