16 lines
325 B
Java
16 lines
325 B
Java
|
//: innerclasses/TestBed.java
|
||
|
// Putting test code in a nested class.
|
||
|
// {main: TestBed$Tester}
|
||
|
|
||
|
public class TestBed {
|
||
|
public void f() { System.out.println("f()"); }
|
||
|
public static class Tester {
|
||
|
public static void main(String[] args) {
|
||
|
TestBed t = new TestBed();
|
||
|
t.f();
|
||
|
}
|
||
|
}
|
||
|
} /* Output:
|
||
|
f()
|
||
|
*///:~
|