- <P>class Noname4
- {
- public static void main(String[] args)
- {
- for(int x = 0, y = 30;x<y;x++,y--)//不加int编译成功
- System.out.println("Hello World!");
- }
- }</P>
- <P>class Noname4
- {
- public static void main(String[] args)
- {
- for(int x = 0, int y = 30;x<y;x++,y--)//加int编译错误
- System.out.println("Hello World!");
- }
- }
- </P>
复制代码 这是不是语法规定呢?
|