hi all,

If I'm using more than one modifier at a time on a single statement of a Java code, can I place them in any order?

I mean following two line are ok..

Code:
static final double weeks = 9.5;

final static double weeks = 9.5;
Thanks.