theclapp

Search theclapp.blog-city.com

 

February 2003



Please wait ... do not adjust your set

Wednesday, 12-Feb-2003 12:59 A GMT-04
No, I didn't lose interest, but I do have a job interview of sorts on Friday, and I need to a) read the 67 page spec for what they want us to do and b) brush up on my C (for which might I recommend the excellent C: A reference manaul, by Harbison & S
Category: Rambling

Chapter 6, ex 9

Thursday, 6-Feb-2003 12:59 A GMT-04
Java version:// ch06_ex09.java class BaseClass { BaseClass(int i) {} } class SubClass extends BaseClass { SubClass() { super( 0 ); } SubClass( int i ) { super( i ); } } class ch06_ex09 { public static void main(

Chapter 6, ex 4

Thursday, 6-Feb-2003 12:59 A GMT-04
Java version:// ch06_ex04.java import com.bruceeckel.tools.P; class ch06_ex04 extends Detergent { // change a method public void scrub() { append(" ch06_ex04.scrub()"); super.scrub(); } // add a method to the interface

Chapter 6, ex 3

Wednesday, 5-Feb-2003 12:59 A GMT-04
6.3, Java version:// ch06_ex03.java class SimpleClass {} class ch06_ex03 { private SimpleClass sc; SimpleClass getSC() { if (sc == null) sc = new SimpleClass(); return( sc ); } public static void main(String[] a

Chapter 6, ex 2

Saturday, 1-Feb-2003 12:59 A GMT-04
6.2, Java version--- // ch06_ex02.java import com.bruceeckel.tools.P; class A { A(int i) { P.rintln( "A constructor called" ); } } class B { B(int i) { P.rintln( "B constructor called" ); } } c