home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java Certification Exam Guide
/
McGrawwHill-JavaCertificationExamGuide.iso
/
pc
/
Web Links and Code
/
code
/
chap9
/
Ex1.java
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Source
|
1997-04-20
|
196 b
|
12 lines
class Ex1 {
public static void main(String[] args) {
Ex1 e = new Ex1();
e.test();
e.test(1.0, 1);
}
void test() {
}
void test(double i, int j) {
}
}