I'm returning to Java dev after many years away from it. Is there anyway to get this code to compile?
class Mpeg4
{
public static final int FourCC2Int(char aA, char aB, char aC, char aD)
{
return (aA << 24) | (aB << 16) | (aC << 8) | (aD);
}
public static void main(String aArgs[]) throws Exception
{
int x = Integer.parseInt(aArgs[0]);
switch (x)
{
case Mpeg4.FourCC2Int('f', 't', 'y', 'p'): // This won't be reduced by the compiler to a constant.
// doSomething();
break;
}
}
}
I tried also to have a class constant such as
class Mpeg4
{
private static final int KFtyp = Mpeg4.FourCC2Int('f', 't', 'y', 'p');
public static void main(String aArgs[]) throws Exception
{
int x = Integer.parseInt(aArgs[0]);
switch (x)
{
case KFtyp: // Foiled again.
// doSomething();
break;
}
}
}
The language has changed quite a bit, and I've done Googling. Is there any way I can keep my code tidy i.e. not manually reducing the 'macro' or having a potentially massive if-then-else-if block? Maybe compiler optimisation flags might be one route? I find this situation quite lame.
case? It just seems a little strange that you want a convenient form for the programmer when it will be very difficult for the user. – erickson Aug 1 '11 at 22:22