为什么逗号(,)不会导致编译错误? [英] why does comma(,) not cause to compilation error?

查看:76
本文介绍了为什么逗号(,)不会导致编译错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我编写的代码突然发现,不会引起任何编译错误。为什么?

I am writing a code that and suddenly see that "," doesn't cause any compilation error. Why ?

我的意思

public enum A {
    B, C, ; // no compilation error
}

int a, b, ; // compilation error


推荐答案

http://docs.oracle.com/javase/specs/jls/ se8 / html / jls-8.html#jls-8.9

枚举体具有以下规范:

{ [EnumConstantList] [,] [EnumBodyDeclarations] } 

如您所见,在EnumConstantList之后可以有一个可选的逗号,这只是一种符号上的方便。

As you can see there can be an optional comma after the EnumConstantList, this is just a notational convenience.

这篇关于为什么逗号(,)不会导致编译错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆