那么,我们尝试使用以下方式定义字符串:尝试使用javac编译,同样会得到"错误: 常量字符串过长",那么原因是什么呢?其实,这个原因在javac的代码中是可以找到的,在Gen类中有如下代码:代码中可以看出,当参数类型为String,并且长度大于等于65535的时候,就会导致编译失败。这个地方大家可以尝试着debug一下javac的编译过程(视频中有对java的编译过程进行debug的方法),也可以发现这个地方会报错。如果我们尝试以35534个字符定义字符串,则会发现可以正常编译。其实,关于这个值,在《Java虚拟机规范》也有过说明:if the Java Virtual Machine code for a method is exactly 65535 bytes long and ends with an instruction that is 1 byte long, then that instruction cannot be protected by an exception handler. A compiler writer can work around this bug by limiting the maximum size of the generated Java Virtual Machine code for any method, instance initialization method, or static initializer (the size of any code array) to 65534 bytes。