Hello,
> in Java all variables with final qaulifier must be initialised during
> decalration. so you can't compile this code
this is not correct. With Java2 you can use deferred-initialization of
final-variables.
That means that you can declare a: "final <type> <var>;" and do later a
"<var> = <value>;"
But there must be one and only one initialization!
regards
Chris
--
public class chu extends ChrisHübsch implements TUChemnitz {
String email = "mailto:[EMAIL PROTECTED]";
String SMSMail = "mailto:[EMAIL PROTECTED]?Subject=SMS: info";
URL homepage = new URL("http://www.tu-chemnitz.de/~chu/");
Talk talkto = new Talk("[EMAIL PROTECTED]");
Integer ePlus = new Integer(4628555);
}